Merge pull request #249 from pcc/xgetinputfocus
[mono.git] / mcs / class / WindowsBase / System.ComponentModel / DependencyPropertyDescriptor.cs
1 // Permission is hereby granted, free of charge, to any person obtaining
2 // a copy of this software and associated documentation files (the
3 // "Software"), to deal in the Software without restriction, including
4 // without limitation the rights to use, copy, modify, merge, publish,
5 // distribute, sublicense, and/or sell copies of the Software, and to
6 // permit persons to whom the Software is furnished to do so, subject to
7 // the following conditions:
8 // 
9 // The above copyright notice and this permission notice shall be
10 // included in all copies or substantial portions of the Software.
11 // 
12 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
13 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
14 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
15 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
16 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
17 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
18 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
19 //
20 // Copyright (c) 2008 Novell, Inc. (http://www.novell.com)
21 //
22 // Authors:
23 //      Chris Toshok (toshok@ximian.com)
24 //
25
26 using System;
27 using System.Windows;
28
29 namespace System.ComponentModel {
30
31         public sealed class DependencyPropertyDescriptor : PropertyDescriptor {
32                 internal DependencyPropertyDescriptor () : base (null)
33                 {
34                 }
35
36                 public override AttributeCollection Attributes
37                 {
38                         get { throw new NotImplementedException (); }
39                 }
40                 public override string Category
41                 {
42                         get { throw new NotImplementedException (); }
43                 }
44                 public override Type ComponentType
45                 {
46                         get { throw new NotImplementedException (); }
47                 }
48                 public override TypeConverter Converter
49                 {
50                         get { throw new NotImplementedException (); }
51                 }
52                 public DependencyProperty DependencyProperty
53                 {
54                         get { throw new NotImplementedException (); }
55                 }
56                 public override string Description
57                 {
58                         get { throw new NotImplementedException (); }
59                 }
60                 public override bool DesignTimeOnly
61                 {
62                         get { throw new NotImplementedException (); }
63                 }
64                 public override string DisplayName
65                 {
66                         get { throw new NotImplementedException (); }
67                 }
68                 public bool IsAttached
69                 {
70                         get { throw new NotImplementedException (); }
71                 }
72                 public override bool IsBrowsable
73                 {
74                         get { throw new NotImplementedException (); }
75                 }
76                 public override bool IsLocalizable
77                 {
78                         get { throw new NotImplementedException (); }
79                 }
80                 public override bool IsReadOnly
81                 {
82                         get { throw new NotImplementedException (); }
83                 }
84                 public PropertyMetadata Metadata
85                 {
86                         get { throw new NotImplementedException (); }
87                 }
88                 public override Type PropertyType
89                 {
90                         get { throw new NotImplementedException (); }
91                 }
92                 public override bool SupportsChangeEvents
93                 {
94                         get { throw new NotImplementedException (); }
95                 }
96
97                 public override void AddValueChanged (object component, EventHandler handler)
98                 {
99                         throw new NotImplementedException ();
100                 }
101                 public override bool CanResetValue (object component)
102                 {
103                         throw new NotImplementedException ();
104                 }
105                 public override bool Equals (object obj)
106                 {
107                         throw new NotImplementedException ();
108                 }
109                 public override PropertyDescriptorCollection GetChildProperties (object instance, Attribute[] filter)
110                 {
111                         throw new NotImplementedException ();
112                 }
113                 public override object GetEditor (Type editorBaseType)
114                 {
115                         throw new NotImplementedException ();
116                 }
117                 public override int GetHashCode ()
118                 {
119                         throw new NotImplementedException ();
120                 }
121                 public override object GetValue (object component)
122                 {
123                         throw new NotImplementedException ();
124                 }
125                 public override void RemoveValueChanged (object component, EventHandler handler)
126                 {
127                         throw new NotImplementedException ();
128                 }
129                 public override void ResetValue (object component)
130                 {
131                         throw new NotImplementedException ();
132                 }
133                 public override void SetValue (object component, object value)
134                 {
135                         throw new NotImplementedException ();
136                 }
137                 public override bool ShouldSerializeValue (object component)
138                 {
139                         throw new NotImplementedException ();
140                 }
141                 public override string ToString ()
142                 {
143                         throw new NotImplementedException ();
144                 }
145
146                 public static DependencyPropertyDescriptor FromName (string name, Type ownerType, Type targetType)
147                 {
148                         throw new NotImplementedException ();
149                 }
150                 public static DependencyPropertyDescriptor FromProperty (PropertyDescriptor property)
151                 {
152                         throw new NotImplementedException ();
153                 }
154                 public static DependencyPropertyDescriptor FromProperty (DependencyProperty dependencyProperty, Type targetType)
155                 {
156                         throw new NotImplementedException ();
157                 }
158
159                 public CoerceValueCallback DesignerCoerceValueCallback {
160                         get { throw new NotImplementedException (); }
161                         set { throw new NotImplementedException (); }
162                 }
163         }
164
165 }