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