* ItfImage.cs: Reformatted and removed sections that were
[mono.git] / mcs / class / System.Drawing / System.Drawing.Imaging / Metafile.cs
1 //
2 // System.Drawing.Imaging.Metafile.cs
3 //
4 // (C) 2002 Ximian, Inc.  http://www.ximian.com
5 // Author: Christian Meyer
6 // eMail: Christian.Meyer@cs.tum.edu
7 // Dennis Hayes (dennish@raytek.com)\r
8 //
9 using System;
10 using System.IO;
11 using System.Reflection;
12
13 namespace System.Drawing.Imaging {
14
15         public sealed class Metafile : Image {
16
17                 // constructors
18                 [MonoTODO]
19                 public Metafile (Stream stream) {
20                         throw new NotImplementedException ();
21                 }
22
23                 [MonoTODO]
24                 public Metafile (string filename) {
25                         throw new NotImplementedException ();
26                 }
27
28                 [MonoTODO]
29                 public Metafile (IntPtr henhmetafile, bool deleteEmf) {
30                         throw new NotImplementedException ();
31                 }
32
33                 [MonoTODO]
34                 public Metafile (IntPtr referenceHtc, EmfType emfType) {
35                         throw new NotImplementedException ();
36                 }
37
38                 [MonoTODO]
39                 public Metafile (IntPtr referenceHtc, Rectangle frameRect) {
40                         throw new NotImplementedException ();
41                 }
42
43                 [MonoTODO]
44                 public Metafile (IntPtr referenceHtc, RectangleF frameRect) {
45                         throw new NotImplementedException ();
46                 }
47
48                 //[MonoTODO]
49                 //public Metafile (IntPtr hmetafile, WmfPlaceableFileHeader wmfHeader) {
50                 //      throw new NotImplementedException ();
51                 //}
52
53                 [MonoTODO]
54                 public Metafile (Stream stream, IntPtr referenceHtc) {
55                         throw new NotImplementedException ();
56                 }
57
58                 [MonoTODO]
59                 public Metafile (String fileName, IntPtr referenceHtc) {
60                         throw new NotImplementedException ();
61                 }
62
63                 [MonoTODO]
64                 public Metafile (IntPtr referenceHdc, EmfType emfType, string description) {
65                         throw new NotImplementedException ();
66                 }
67
68                 [MonoTODO]
69                 public Metafile (IntPtr referenceHdc, Rectangle frameRect, MetafileFrameUnit frameUnit) {
70                         throw new NotImplementedException ();
71                 }
72
73                 [MonoTODO]
74                 public Metafile (IntPtr referenceHdc, RectangleF frameRect, MetafileFrameUnit frameUnit) {
75                         throw new NotImplementedException ();
76                 }
77
78 //              [MonoTODO]
79 //              public Metafile (IntPtr hmetafile, WmfPlaceableFileHeader wmfHeader, bool deleteWmf) {
80 //                      throw new NotImplementedException ();
81 //              }
82
83                 [MonoTODO]
84                 public Metafile (Stream stream, IntPtr referenceHdc, EmfType type) {
85                         throw new NotImplementedException ();
86                 }
87
88                 [MonoTODO]
89                 public Metafile (Stream stream, IntPtr referenceHdc, Rectangle frameRect) {
90                         throw new NotImplementedException ();
91                 }
92
93                 [MonoTODO]
94                 public Metafile (Stream stream, IntPtr referenceHdc, RectangleF frameRect) {
95                         throw new NotImplementedException ();
96                 }
97
98                 [MonoTODO]
99                 public Metafile (string fileName, IntPtr referenceHdc, EmfType type) {
100                         throw new NotImplementedException ();
101                 }
102
103                 [MonoTODO]
104                 public Metafile (string fileName, IntPtr referenceHdc, Rectangle frameRect) {
105                         throw new NotImplementedException ();
106                 }
107
108                 // methods
109                 // properties
110         }
111
112 }