Added missing Serializable attributes, deserialization constructors etc.
[mono.git] / mcs / class / System.Drawing / System.Drawing / SystemColors.cs
1 //
2 // System.Drawing.SystemColors
3 //
4 // Authors:
5 //      Gonzalo Paniagua Javier (gonzalo@ximian.com)
6 //
7 // (C) 2002 Ximian, Inc (http://www.ximian.com)
8 // 
9 // Generated using a slightly modified version of the program listed inside comments
10 // in Color.cs
11 //
12
13 namespace System.Drawing {
14
15         public sealed class SystemColors
16         {
17                 static public Color ActiveBorder
18                 {       
19                         get {
20                                 return Color.FromArgbSystem (255, 131, 153, 177, "ActiveBorder");
21                         }
22                 }
23
24                 static public Color ActiveCaption
25                 {       
26                         get {
27                                 return Color.FromArgbSystem (255, 79, 101, 125, "ActiveCaption");
28                         }
29                 }
30
31                 static public Color ActiveCaptionText
32                 {       
33                         get {
34                                 return Color.FromArgbSystem (255, 255, 255, 255, "ActiveCaptionText");
35                         }
36                 }
37
38                 static public Color AppWorkspace
39                 {       
40                         get {
41                                 return Color.FromArgbSystem (255, 128, 128, 128, "AppWorkspace");
42                         }
43                 }
44
45                 static public Color Control
46                 {       
47                         get {
48                                 return Color.FromArgbSystem (255, 192, 192, 192, "Control");
49                         }
50                 }
51
52                 static public Color ControlDark
53                 {       
54                         get {
55                                 return Color.FromArgbSystem (255, 79, 101, 125, "ControlDark");
56                         }
57                 }
58
59                 static public Color ControlDarkDark
60                 {       
61                         get {
62                                 return Color.FromArgbSystem (255, 0, 0, 0, "ControlDarkDark");
63                         }
64                 }
65
66                 static public Color ControlLight
67                 {       
68                         get {
69                                 return Color.FromArgbSystem (255, 131, 153, 177, "ControlLight");
70                         }
71                 }
72
73                 static public Color ControlLightLight
74                 {       
75                         get {
76                                 return Color.FromArgbSystem (255, 193, 204, 217, "ControlLightLight");
77                         }
78                 }
79
80                 static public Color ControlText
81                 {       
82                         get {
83                                 return Color.FromArgbSystem (255, 0, 0, 0, "ControlText");
84                         }
85                 }
86
87                 static public Color Desktop
88                 {       
89                         get {
90                                 return Color.FromArgbSystem (255, 0, 0, 0, "Desktop");
91                         }
92                 }
93
94                 static public Color GrayText
95                 {       
96                         get {
97                                 return Color.FromArgbSystem (255, 79, 101, 125, "GrayText");
98                         }
99                 }
100
101                 static public Color Highlight
102                 {       
103                         get {
104                                 return Color.FromArgbSystem (255, 79, 101, 125, "Highlight");
105                         }
106                 }
107
108                 static public Color HighlightText
109                 {       
110                         get {
111                                 return Color.FromArgbSystem (255, 255, 255, 255, "HighlightText");
112                         }
113                 }
114
115                 static public Color HotTrack
116                 {       
117                         get {
118                                 return Color.FromArgbSystem (255, 0, 0, 255, "HotTrack");
119                         }
120                 }
121
122                 static public Color InactiveBorder
123                 {       
124                         get {
125                                 return Color.FromArgbSystem (255, 131, 153, 177, "InactiveBorder");
126                         }
127                 }
128
129                 static public Color InactiveCaption
130                 {       
131                         get {
132                                 return Color.FromArgbSystem (255, 128, 128, 128, "InactiveCaption");
133                         }
134                 }
135
136                 static public Color InactiveCaptionText
137                 {       
138                         get {
139                                 return Color.FromArgbSystem (255, 193, 204, 217, "InactiveCaptionText");
140                         }
141                 }
142
143                 static public Color Info
144                 {       
145                         get {
146                                 return Color.FromArgbSystem (255, 255, 255, 255, "Info");
147                         }
148                 }
149
150                 static public Color InfoText
151                 {       
152                         get {
153                                 return Color.FromArgbSystem (255, 0, 0, 0, "InfoText");
154                         }
155                 }
156
157                 static public Color Menu
158                 {       
159                         get {
160                                 return Color.FromArgbSystem (255, 131, 153, 177, "Menu");
161                         }
162                 }
163
164                 static public Color MenuText
165                 {       
166                         get {
167                                 return Color.FromArgbSystem (255, 0, 0, 0, "MenuText");
168                         }
169                 }
170
171                 static public Color ScrollBar
172                 {       
173                         get {
174                                 return Color.FromArgbSystem (255, 193, 204, 217, "ScrollBar");
175                         }
176                 }
177
178                 static public Color Window
179                 {       
180                         get {
181                                 return Color.FromArgbSystem (255, 255, 255, 255, "Window");
182                         }
183                 }
184
185                 static public Color WindowFrame
186                 {       
187                         get {
188                                 return Color.FromArgbSystem (255, 0, 0, 0, "WindowFrame");
189                         }
190                 }
191
192                 static public Color WindowText
193                 {       
194                         get {
195                                 return Color.FromArgbSystem (255, 0, 0, 0, "WindowText");
196                         }
197                 }
198         }
199 }
200