* Stubed rest of System.Drawing.Design
[mono.git] / mcs / class / System.Drawing.Design / System.Drawing.Design / IconEditor.cs
1 //
2 // System.Drawing.Design.IconEditor
3 //
4 // Authors:
5 //      Martin Willemoes Hansen (mwh@sysrq.dk)
6 //
7 // (C) 2003 Martin Willemoes Hansen
8 //
9
10 using System.ComponentModel;
11 using System.IO;
12
13 namespace System.Drawing.Design
14 {
15         public class IconEditor : UITypeEditor
16         {
17                 [MonoTODO]
18                 public IconEditor()
19                 {
20                 }
21
22                 [MonoTODO]
23                 protected static string CreateExtensionsString (string[] extensions,
24                                                                 string sep)
25                 {
26                         throw new NotImplementedException();
27                 }
28
29                 [MonoTODO]
30                 protected static string CreateFilterEntry (IconEditor e)
31                 {
32                         throw new NotImplementedException();
33                 }
34
35                 [MonoTODO]
36                 public override object EditValue (ITypeDescriptorContext context,
37                                                   IServiceProvider provider,
38                                                   object value)
39                 {
40                         throw new NotImplementedException();
41                 }
42
43                 [MonoTODO]
44                 public override UITypeEditorEditStyle GetEditStyle (
45                                 ITypeDescriptorContext context)
46                 {
47                         throw new NotImplementedException();
48                 }
49
50                 [MonoTODO]
51                 protected virtual string[] GetExtensions()
52                 {
53                         throw new NotImplementedException();
54                 }
55
56                 [MonoTODO]
57                 protected virtual string GetFileDialogDescription()
58                 {
59                         throw new NotImplementedException();
60                 }
61
62                 [MonoTODO]
63                 public override bool GetPaintValueSupported (
64                                      ITypeDescriptorContext context)
65                 {
66                         throw new NotImplementedException();
67                 }
68
69                 [MonoTODO]
70                 protected virtual Icon LoadFromStream (Stream stream)
71                 {
72                         throw new NotImplementedException();
73                 }
74
75                 [MonoTODO]
76                 public override void PaintValue (PaintValueEventArgs e)
77                 {
78                         throw new NotImplementedException();
79                 }
80         }
81 }