~ubuntu-branches/ubuntu/trusty/monodevelop/trusty-proposed

« back to all changes in this revision

Viewing changes to external/maccore/src/CoreAnimation/CADefs.cs

  • Committer: Package Import Robot
  • Author(s): Jo Shields
  • Date: 2013-05-12 09:46:03 UTC
  • mto: This revision was merged to the branch mainline in revision 29.
  • Revision ID: package-import@ubuntu.com-20130512094603-mad323bzcxvmcam0
Tags: upstream-4.0.5+dfsg
ImportĀ upstreamĀ versionĀ 4.0.5+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
69
69
                const string FromBottom = "fromBottom";
70
70
        }
71
71
 
72
 
        public partial class CAKeyFrameAnimation {
73
 
                public CGPath Path {
74
 
                        get {
75
 
                                return new CGPath (_Path);
76
 
                        }
77
 
                        set {
78
 
                                _Path = value.Handle;
79
 
                        }
80
 
                }
81
 
        }
82
 
        
83
72
        public partial class CAGradientLayer {
84
73
                public CGColor CreateColor (IntPtr p)
85
74
                {
105
94
                        }
106
95
                }
107
96
        }
 
97
 
 
98
        [StructLayout (LayoutKind.Sequential)]
 
99
        public struct CABarBeatTime {
 
100
                public int Bar;
 
101
                public ushort Beat;
 
102
                public ushort Subbeat;
 
103
                public ushort SubbeatDivisor;
 
104
                public ushort Reserved;
 
105
        }
 
106
 
 
107
        public partial class CAKeyFrameAnimation {
 
108
 
 
109
                [Obsolete ("This method in the future will return a CAKeyFrameAnimation, update your source, or use GetFromKeyPath to avoid this warning for now")]
 
110
                public static CAPropertyAnimation FromKeyPath (string path)
 
111
                {
 
112
                        return GetFromKeyPath (path);
 
113
                }
 
114
        }
 
115
        
108
116
}