Reactivate System.Drawing build. Bugfixes and stubbing of non-trivial
[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 //
8 using System;
9 using System.IO;
10 using System.Reflection;
11
12 namespace System.Drawing.Imaging {
13
14         public sealed class Metafile : Image {
15
16                 // constructors
17                 [MonoTODO]
18                 public Metafile (Stream stream) {
19                         throw new NotImplementedException ();
20                 }
21
22                 [MonoTODO]
23                 public Metafile (string filename) {
24                         throw new NotImplementedException ();
25                 }
26
27                 [MonoTODO]
28                 public Metafile (IntPtr henhmetafile, bool deleteEmf) {
29                         throw new NotImplementedException ();
30                 }
31
32                 [MonoTODO]
33                 public Metafile (IntPtr referenceHtc, EmfType emfType) {
34                         throw new NotImplementedException ();
35                 }
36
37                 [MonoTODO]
38                 public Metafile (IntPtr referenceHtc, Rectangle frameRect) {
39                         throw new NotImplementedException ();
40                 }
41
42                 [MonoTODO]
43                 public Metafile (IntPtr referenceHtc, RectangleF frameRect) {
44                         throw new NotImplementedException ();
45                 }
46
47                 [MonoTODO]
48                 public Metafile (IntPtr hmetafile, WmfPlaceableFileHeader wmfHeader) {
49                         throw new NotImplementedException ();
50                 }
51
52                 [MonoTODO]
53                 public Metafile (Stream stream, IntPtr referenceHtc) {
54                         throw new NotImplementedException ();
55                 }
56
57                 [MonoTODO]
58                 public Metafile (String fileName, IntPtr referenceHtc) {
59                         throw new NotImplementedException ();
60                 }
61
62                 [MonoTODO]
63                 public Metafile (IntPtr referenceHdc, EmfType emfType, string description) {
64                         throw new NotImplementedException ();
65                 }
66
67                 [MonoTODO]
68                 public Metafile (IntPtr referenceHdc, Rectangle frameRect, MetafileFrameUnit frameUnit) {
69                         throw new NotImplementedException ();
70                 }
71
72                 [MonoTODO]
73                 public Metafile (IntPtr referenceHdc, RectangleF frameRect, MetafileFrameUnit frameUnit) {
74                         throw new NotImplementedException ();
75                 }
76
77                 [MonoTODO]
78                 public Metafile (IntPtr hmetafile, WmfPlaceableFileHeader wmfHeader, bool deleteWmf) {
79                         throw new NotImplementedException ();
80                 }
81
82                 [MonoTODO]
83                 public Metafile (Stream stream, IntPtr referenceHdc, EmfType type) {
84                         throw new NotImplementedException ();
85                 }
86
87                 [MonoTODO]
88                 public Metafile (Stream stream, IntPtr referenceHdc, Rectangle frameRect) {
89                         throw new NotImplementedException ();
90                 }
91
92                 [MonoTODO]
93                 public Metafile (Stream stream, IntPtr referenceHdc, RectangleF frameRect) {
94                         throw new NotImplementedException ();
95                 }
96
97                 [MonoTODO]
98                 public Metafile (string fileName, IntPtr referenceHdc, EmfType type) {
99                         throw new NotImplementedException ();
100                 }
101
102                 [MonoTODO]
103                 public Metafile (string fileName, IntPtr referenceHdc, Rectangle frameRect) {
104                         throw new NotImplementedException ();
105                 }
106
107                 // methods
108                 // properties
109         }
110
111 }