New test.
[mono.git] / mcs / class / System.Drawing / System.Drawing.Drawing2D / HatchStyle.cs
1 //
2 // System.Drawing.Drawing2D.HatchStyle.cs
3 //
4 // Authors:
5 //   Stefan Maierhofer <sm@cg.tuwien.ac.at>
6 //   Dennis Hayes (dennish@Raytek.com)
7 //   Ravindra (rkumar@novell.com)
8 //
9 // (C) 2002/3 Ximian, Inc.
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 namespace System.Drawing.Drawing2D {
33
34 #if ONLY_1_1
35         [Serializable]
36 #endif
37         public enum HatchStyle {
38                 BackwardDiagonal = 3,
39                 Cross = LargeGrid,
40                 DarkDownwardDiagonal = 20,
41                 DarkHorizontal = 29,
42                 DarkUpwardDiagonal = 21,
43                 DarkVertical = 28,
44                 DashedDownwardDiagonal = 30,
45                 DashedHorizontal = 32,
46                 DashedUpwardDiagonal = 31,
47                 DashedVertical = 33,
48                 DiagonalBrick = 38,
49                 DiagonalCross = 5,
50                 Divot = 42,
51                 DottedDiamond = 44,
52                 DottedGrid = 43,
53                 ForwardDiagonal = 2,
54                 Horizontal = 0,
55                 HorizontalBrick = 39,
56                 LargeCheckerBoard = 50,
57                 LargeConfetti = 35,
58                 LargeGrid = 4,
59                 LightDownwardDiagonal = 18,
60                 LightHorizontal = 25,
61                 LightUpwardDiagonal = 19,
62                 LightVertical = 24,
63                 Max = 4,
64                 Min = 0,
65                 NarrowHorizontal = 27,
66                 NarrowVertical = 26,
67                 OutlinedDiamond = 51,
68                 Percent05 = 6,
69                 Percent10 = 7,
70                 Percent20 = 8,
71                 Percent25 = 9,
72                 Percent30 = 10,
73                 Percent40 = 11,
74                 Percent50 = 12,
75                 Percent60 = 13,
76                 Percent70 = 14,
77                 Percent75 = 15,
78                 Percent80 = 16,
79                 Percent90 = 17,
80                 Plaid = 41,
81                 Shingle = 45,
82                 SmallCheckerBoard = 49,
83                 SmallConfetti = 34,
84                 SmallGrid = 48,
85                 SolidDiamond = 52,
86                 Sphere = 47,
87                 Trellis = 46,
88                 Vertical = 1,
89                 Wave = 37,
90                 Weave = 40,
91                 WideDownwardDiagonal = 22,
92                 WideUpwardDiagonal = 23,
93                 ZigZag = 36
94         }
95 }