* FileSystemInfo.cs: corrected COM visibility of UTC properties
[mono.git] / mcs / class / System.Design / System.ComponentModel.Design / ByteViewer.cs
1 //
2 // System.ComponentModel.Design.ByteViewer
3 //
4 // Authors:
5 //      Martin Willemoes Hansen (mwh@sysrq.dk)
6 //
7 // (C) 2003 Martin Willemoes Hansen
8 //
9
10 using System.Windows.Forms;
11
12 namespace System.ComponentModel.Design
13 {
14         public class ByteViewer : Control
15         {
16                 [MonoTODO]
17                 public ByteViewer()
18                 {
19                 }
20
21                 public override ISite Site {
22                         [MonoTODO]
23                         get { throw new NotImplementedException(); } 
24                         [MonoTODO]
25                         set { throw new NotImplementedException(); }
26                 }
27
28                 [MonoTODO]
29                 public virtual DisplayMode GetDisplayMode()
30                 {
31                         throw new NotImplementedException();
32                 }
33
34                 [MonoTODO]
35                 public virtual void SaveToFile (string path)
36                 {
37                         throw new NotImplementedException();
38                 }
39
40                 [MonoTODO]
41                 public virtual void SetBytes (byte[] bytes)
42                 {
43                         throw new NotImplementedException();
44                 }
45
46                 [MonoTODO]
47                 public virtual void SetDisplayMode (DisplayMode mode)
48                 {
49                         throw new NotImplementedException();
50                 }
51
52                 [MonoTODO]
53                 public virtual void SetFile (string path)
54                 {
55                         throw new NotImplementedException();
56                 }
57
58                 [MonoTODO]
59                 public virtual void SetStartLine (int line)
60                 {
61                         throw new NotImplementedException();
62                 }
63
64                 [MonoTODO]
65                 protected override void OnKeyDown (KeyEventArgs e)
66                 {
67                         throw new NotImplementedException();
68                 }
69
70                 [MonoTODO]
71                 protected override void OnPaint (PaintEventArgs e)
72                 {
73                         throw new NotImplementedException();
74                 }
75
76                 [MonoTODO]
77                 protected override void OnResize (EventArgs e)
78                 {
79                         throw new NotImplementedException();
80                 }
81
82                 [MonoTODO]
83                 ~ByteViewer()
84                 {
85                 }
86         }
87
88 }