Merge pull request #960 from ermshiperete/ShowHelp
[mono.git] / mcs / class / System.Drawing / System.Drawing.Imaging / WmfPlaceableFileHeader.cs
1 //
2 // System.Drawing.Imaging.WmfPlaceableFileHeader.cs
3 //
4 // Authors:
5 //      Everaldo Canuto  <everaldo.canuto@bol.com.br>
6 //      Dennis Hayes (dennish@raytek.com)
7 //      Sebastien Pouliot  <sebastien@ximian.com>
8 //
9 // (C) 2002 Ximian, Inc.  http://www.ximian.com
10 // Copyright (C) 2004, 2006 Novell, Inc (http://www.novell.com)
11 //
12 // Permission is hereby granted, free of charge, to any person obtaining
13 // a copy of this software and associated documentation files (the
14 // "Software"), to deal in the Software without restriction, including
15 // without limitation the rights to use, copy, modify, merge, publish,
16 // distribute, sublicense, and/or sell copies of the Software, and to
17 // permit persons to whom the Software is furnished to do so, subject to
18 // the following conditions:
19 // 
20 // The above copyright notice and this permission notice shall be
21 // included in all copies or substantial portions of the Software.
22 // 
23 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
24 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
25 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
26 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
27 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
28 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
29 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
30 //
31
32 using System.Runtime.InteropServices;
33
34 namespace System.Drawing.Imaging {
35
36         [StructLayout (LayoutKind.Sequential, Pack=2)]
37         public sealed class WmfPlaceableFileHeader {
38
39                 // field order match: http://wvware.sourceforge.net/caolan/ora-wmf.html
40                 // for PLACEABLEMETAHEADER structure
41                 private int key;
42                 private short handle;
43                 private short left;
44                 private short top;
45                 private short right;
46                 private short bottom;
47                 private short inch;
48                 private int reserved;
49                 private short checksum;
50
51
52                 public WmfPlaceableFileHeader ()
53                 {
54                         // header magic number
55                         key = unchecked ((int) 0x9AC6CDD7);
56                 }
57
58
59                 public short BboxBottom {
60                         get { return bottom; }
61                         set { bottom = value; }
62                 }
63                 
64                 public short BboxLeft {
65                         get { return left; }
66                         set { left = value; }
67                 }
68                 
69                 public short BboxRight {
70                         get { return right; }
71                         set { right = value; }
72                 }
73                 
74                 public short BboxTop {
75                         get { return top; }
76                         set { top = value; }
77                 }
78                 
79                 public short Checksum {
80                         get { return checksum; }
81                         set { checksum = value; }
82                 }
83                 
84                 public short Hmf {
85                         get { return handle; }
86                         set { handle = value; }
87                 }
88                 
89                 public short Inch {
90                         get { return inch; }
91                         set { inch = value; }
92                 }
93                 
94                 public int Key {
95                         get { return key; }
96                         set { key = value; }
97                 }
98                 
99                 public int Reserved {
100                         get { return reserved; }
101                         set { reserved = value; }
102                 }                               
103         }
104 }