2005-10-04 Zoltan Varga <vargaz@freemail.hu>
[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
34 namespace System.Drawing.Imaging {
35
36         public sealed class MetafileHeader 
37         {
38                 
39                 //constructor
40                 internal MetafileHeader()
41                 {
42                         //Nothing to be done here
43                 }
44
45                 // methods
46                 [MonoTODO]
47                 public bool IsDisplay() {
48                         throw new NotImplementedException ();
49                 }
50
51                 [MonoTODO]
52                 public bool IsEmf() {
53                         throw new NotImplementedException ();
54                 }
55
56                 [MonoTODO]
57                 public bool IsEmfOrEmfPlus() {
58                         throw new NotImplementedException ();
59                 }
60
61                 [MonoTODO]
62                 public bool IsEmfPlus() {
63                         throw new NotImplementedException ();
64                 }
65
66                 [MonoTODO]
67                 public bool IsEmfPlusDual() {
68                         throw new NotImplementedException ();
69                 }
70
71                 [MonoTODO]
72                 public bool IsEmfPlusOnly() {
73                         throw new NotImplementedException ();
74                 }
75
76                 [MonoTODO]
77                 public bool IsWmf() {
78                         throw new NotImplementedException ();
79                 }
80
81                 [MonoTODO]
82                 public bool IsWmfPlaceable() {
83                         throw new NotImplementedException ();
84                 }
85
86                 // properties
87                 [MonoTODO]
88                 public Rectangle Bounds {
89                         get { throw new NotImplementedException (); }
90                 }
91
92                 [MonoTODO]
93                 public float DpiX {
94                         get { throw new NotImplementedException (); }
95                 }
96                 
97                 [MonoTODO]
98                 public float DpiY {
99                         get { throw new NotImplementedException (); }
100                 }
101                 
102                 [MonoTODO]
103                 public int EmfPlusHeaderSize {
104                         get { throw new NotImplementedException (); }
105                 }
106
107                 [MonoTODO]
108                 public int LogicalDpiX {
109                         get { throw new NotImplementedException (); }
110                 }
111                 
112                 [MonoTODO]
113                 public int LogicalDpiY {
114                         get { throw new NotImplementedException (); }
115                 }
116                 
117                 [MonoTODO]
118                 public int MetafileSize {
119                         get { throw new NotImplementedException (); }
120                 }
121
122                 [MonoTODO]
123                 public MetafileType Type {
124                         get { throw new NotImplementedException (); }
125                 }
126
127                 [MonoTODO]
128                 public int Version {
129                         get { throw new NotImplementedException (); }
130                 }
131                 
132                 [MonoTODO]
133                 public MetaHeader WmfHeader {
134                         get { throw new NotImplementedException (); }
135                 }
136
137         }
138
139 }