Advertisement
angelwzr

14251 vs 14253

Jan 28th, 2016
355
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 4.00 KB | None | 0 0
  1.  
  2.  MetaDiff v0.1 https://github.com/WalkingCat/MetaDiff
  3.  
  4.  new file: 14253_Windows.WinMD
  5.  old file: 14251_Windows.WinMD
  6.  
  7.  diff legends: +: added, -: removed, *: changed, |: type member changed
  8.  
  9. + public class Windows.UI.Composition.AnimationClass : Windows.UI.Composition.CompositionObject {
  10. +   public AnimationClass Parent { get; set; }
  11. +   public void AddAnimation( VisualEvents eventId, KeyFrameAnimation value, string propertyName );
  12. +   public void AddAnimationGroup( VisualEvents eventId, AnimationGroup value );
  13. +   public void Remove( VisualEvents eventId );
  14. +   public void RemoveAll();
  15. + }
  16.  
  17. + public class Windows.UI.Composition.AnimationGroup : Windows.UI.Composition.CompositionObject {
  18. +   public int Count { get; }
  19. +   public void Insert( KeyFrameAnimation value, string propertyName );
  20. +   public void Remove( KeyFrameAnimation value );
  21. +   public void RemoveAll();
  22. +   public IIterator<KeyFrameAnimation> First();
  23. + }
  24.  
  25. | public enum Windows.UI.Composition.CompositionCompositeMode {
  26. +   MinBlend = 3,
  27. | }
  28.  
  29. + public enum Windows.UI.Composition.CompositionGradientWrapMode {
  30. +   Extend = 0,
  31. +   Flip = 1,
  32. +   Tile = 2,
  33. + }
  34.  
  35. + public class Windows.UI.Composition.CompositionLinearGradientBrush : Windows.UI.Composition.CompositionBrush {
  36. +   public CompositionGradientWrapMode WrapMode { get; set; }
  37. +   public Matrix3x2 Transform { get; set; }
  38. +   public Vector2 StartPoint { get; set; }
  39. +   public Vector2 EndPoint { get; set; }
  40. +   public IMap<float, Color> GetStops();
  41. +   public void SetStops( IMap<float, Color> value );
  42. + }
  43.  
  44. + public class Windows.UI.Composition.CompositionMaskBrush : Windows.UI.Composition.CompositionBrush {
  45. +   public CompositionBrush Source { get; set; }
  46. +   public CompositionBrush Mask { get; set; }
  47. + }
  48.  
  49. | public class Windows.UI.Composition.CompositionSurfaceBrush : Windows.UI.Composition.CompositionBrush {
  50. +   public Matrix3x2 Transform { get; set; }
  51. | }
  52.  
  53. | public class Windows.UI.Composition.Compositor {
  54. +   public AnimationClass CreateAnimationClass();
  55. +   public AnimationGroup CreateAnimationGroup();
  56. +   public ConditionalExpressionAnimation CreateConditionalExpressionAnimation();
  57. +   public ConditionalExpressionAnimation CreateConditionalExpressionAnimation( ConditionalExpressionAnimationSelection result );
  58. +   public CompositionMaskBrush CreateMaskBrush();
  59. +   public ScrollTracker CreateScrollTracker();
  60. | }
  61.  
  62. + public class Windows.UI.Composition.ConditionalExpressionAnimation : Windows.UI.Composition.CompositionAnimation {
  63. +   public string DefaultExpression { get; set; }
  64. +   public void AddCondition( string conditionString, string expressionString );
  65. + }
  66.  
  67. + public enum Windows.UI.Composition.ConditionalExpressionAnimationSelection {
  68. +   None = 0,
  69. +   FirstMatch = 1,
  70. +   SumMatches = 2,
  71. + }
  72.  
  73. + public class Windows.UI.Composition.ScrollTracker : Windows.UI.Composition.CompositionObject {
  74. +   public Vector3 Offset { get; set; }
  75. +   public Vector2 ContentSize { get; set; }
  76. +   public Vector2 ContainerSize { get; set; }
  77. +   public Vector3 ScrollPosition { get; }
  78. +   public void ScrollByAmount( Vector3 amount );
  79. +   public void ScrollToPosition( Vector3 position );
  80. +   public void ScrollWithAnimation( Vector3KeyFrameAnimation animation );
  81. + }
  82.  
  83. | public class Windows.UI.Composition.Visual : Windows.UI.Composition.CompositionObject {
  84. +   public float RelativeWidth { get; set; }
  85. +   public float RelativeOffsetY { get; set; }
  86. +   public float RelativeOffsetX { get; set; }
  87. +   public float RelativeHeight { get; set; }
  88. +   public AnimationClass AnimationClass { get; set; }
  89. +   public bool SnapToPixels { get; set; }
  90. | }
  91.  
  92. + public enum Windows.UI.Composition.VisualEvents {
  93. +   None = 0,
  94. +   Alpha = 1,
  95. +   Destroy = 2,
  96. +   Hide = 3,
  97. +   Move = 4,
  98. +   Reshow = 5,
  99. +   Resize = 6,
  100. +   Rotate = 7,
  101. +   Scale = 8,
  102. +   Show = 9,
  103. + }
  104.  
  105. | public class Windows.UI.Xaml.Media.Animation.RepositionThemeTransition : Windows.UI.Xaml.Media.Animation.Transition {
  106. +   public bool IsStaggeringEnabled { get; set; }
  107. +   public DependencyProperty IsStaggeringEnabledProperty { get; }
  108. | }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement