DrawString implementation
[mono.git] / mcs / class / System.Drawing / System.Drawing / SystemBrushes.cs
1 //
2 // System.Drawing.SystemBrushes.cs
3 //
4 // Author:
5 //   Dennis Hayes (dennish@Raytek.com)
6 //
7 // (C) 2002 Ximian, Inc
8 //
9 using System;
10
11 namespace System.Drawing
12 {
13         /// <summary>
14         /// Summary description for SystemBrushes.
15         /// </summary>
16         public class SystemBrushes
17         {
18                 public SystemBrushes()
19                 {
20                         //
21                         // TODO: Add constructor logic here
22                         //
23                 }
24                 public static Brush ActiveBorder
25                 {       
26                         get {
27                                 return new SolidBrush(SystemColors.ActiveBorder);
28                         }
29                 }
30
31                 public static Brush ActiveCaption
32                 {       
33                         get {
34                                 return new SolidBrush(SystemColors.ActiveCaption);
35                         }
36                 }
37
38                 public static Brush ActiveCaptionText
39                 {       
40                         get {
41                                 return new SolidBrush(SystemColors.ActiveCaptionText);
42                         }
43                 }
44
45                 public static Brush AppWorkspace
46                 {       
47                         get {
48                                 return new SolidBrush(SystemColors.AppWorkspace);
49                         }
50                 }
51
52                 public static Brush Control {
53                         get {
54                                 return new SolidBrush(SystemColors.Control);
55                         }
56                 }
57
58                 public static Brush ControlText {
59                         get {
60                                 return new SolidBrush(SystemColors.ControlText);
61                         }
62                 }
63
64                 public static Brush Highlight {
65                         get {
66                                 return new SolidBrush(SystemColors.Highlight);
67                         }
68                 }
69
70                 public static Brush HighlightText {
71                         get {
72                                 return new SolidBrush(SystemColors.HighlightText);
73                         }
74                 }
75
76                 public static Brush Window {
77                         get {
78                                 return new SolidBrush(SystemColors.Window);
79                         }
80                 }
81         }
82 }