New test.
[mono.git] / mcs / class / System.Drawing / System.Drawing.Imaging / MetafileHeader.cs
1 //
2 // System.Drawing.Imaging.MetafileHeader.cs
3 //
4 // Author: Everaldo Canuto
5 // eMail: everaldo.canuto@bol.com.br
6 // Dennis Hayes (dennish@raytek.com)
7 //
8 // (C) 2002 Ximian, Inc.  http://www.ximian.com
9 // Copyright (C) 2004, 2006 Novell, Inc (http://www.novell.com)
10 //
11 // Permission is hereby granted, free of charge, to any person obtaining
12 // a copy of this software and associated documentation files (the
13 // "Software"), to deal in the Software without restriction, including
14 // without limitation the rights to use, copy, modify, merge, publish,
15 // distribute, sublicense, and/or sell copies of the Software, and to
16 // permit persons to whom the Software is furnished to do so, subject to
17 // the following conditions:
18 // 
19 // The above copyright notice and this permission notice shall be
20 // included in all copies or substantial portions of the Software.
21 // 
22 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
23 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
24 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
25 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
26 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
27 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
28 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
29 //
30
31 using System.Runtime.InteropServices;
32
33 namespace System.Drawing.Imaging {
34
35         [MonoTODO ("Metafiles, both WMF and EMF formats, aren't supported.")]
36 #if !TARGET_JVM
37         [StructLayout(LayoutKind.Sequential)]
38 #endif
39         public sealed class MetafileHeader {
40                 
41                 //constructor
42                 internal MetafileHeader()
43                 {
44                         //Nothing to be done here
45                 }
46
47                 // methods
48
49                 public bool IsDisplay ()
50                 {
51                         throw new NotImplementedException ();
52                 }
53
54                 public bool IsEmf ()
55                 {
56                         throw new NotImplementedException ();
57                 }
58
59                 public bool IsEmfOrEmfPlus ()
60                 {
61                         throw new NotImplementedException ();
62                 }
63
64                 public bool IsEmfPlus ()
65                 {
66                         throw new NotImplementedException ();
67                 }
68
69                 public bool IsEmfPlusDual ()
70                 {
71                         throw new NotImplementedException ();
72                 }
73
74                 public bool IsEmfPlusOnly ()
75                 {
76                         throw new NotImplementedException ();
77                 }
78
79                 public bool IsWmf ()
80                 {
81                         throw new NotImplementedException ();
82                 }
83
84                 public bool IsWmfPlaceable ()
85                 {
86                         throw new NotImplementedException ();
87                 }
88
89                 // properties
90
91                 public Rectangle Bounds {
92                         get { throw new NotImplementedException (); }
93                 }
94
95                 public float DpiX {
96                         get { throw new NotImplementedException (); }
97                 }
98                 
99                 public float DpiY {
100                         get { throw new NotImplementedException (); }
101                 }
102                 
103                 public int EmfPlusHeaderSize {
104                         get { throw new NotImplementedException (); }
105                 }
106
107                 public int LogicalDpiX {
108                         get { throw new NotImplementedException (); }
109                 }
110                 
111                 public int LogicalDpiY {
112                         get { throw new NotImplementedException (); }
113                 }
114                 
115                 public int MetafileSize {
116                         get { throw new NotImplementedException (); }
117                 }
118
119                 public MetafileType Type {
120                         get { throw new NotImplementedException (); }
121                 }
122
123                 public int Version {
124                         get { throw new NotImplementedException (); }
125                 }
126                 
127                 public MetaHeader WmfHeader {
128                         get { throw new NotImplementedException (); }
129                 }
130         }
131 }