New test.
[mono.git] / mcs / class / System.Drawing / System.Drawing / SolidBrush.cs
1 //
2 // System.Drawing.SolidBrush.cs
3 //
4 // Author:
5 //   Dennis Hayes (dennish@Raytek.com)
6 //   Alexandre Pigolkine(pigolkine@gmx.de)
7 //   Ravindra (rkumar@novell.com)
8 //
9 // (C) 2002 Ximian, Inc.
10 // (C) 2004 Novell, Inc.
11 //
12
13 //
14 // Copyright (C) 2004 Novell, Inc (http://www.novell.com)
15 //
16 // Permission is hereby granted, free of charge, to any person obtaining
17 // a copy of this software and associated documentation files (the
18 // "Software"), to deal in the Software without restriction, including
19 // without limitation the rights to use, copy, modify, merge, publish,
20 // distribute, sublicense, and/or sell copies of the Software, and to
21 // permit persons to whom the Software is furnished to do so, subject to
22 // the following conditions:
23 // 
24 // The above copyright notice and this permission notice shall be
25 // included in all copies or substantial portions of the Software.
26 // 
27 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
28 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
29 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
30 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
31 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
32 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
33 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
34 //
35 using System;
36
37 namespace System.Drawing
38 {
39         public sealed class SolidBrush : Brush {
40                 
41                 internal bool isModifiable = true;
42                 private Color color;
43
44                 internal SolidBrush (IntPtr ptr)
45                         : base (ptr)
46                 {
47                         int val;
48                         Status status = GDIPlus.GdipGetSolidFillColor (ptr, out val);
49                         GDIPlus.CheckStatus (status);
50                         color = Color.FromArgb (val);
51                 }
52
53                 public SolidBrush (Color color)
54                 {
55                         this.color = color;
56                         Status status = GDIPlus.GdipCreateSolidFill (color.ToArgb (), out nativeObject);
57                         GDIPlus.CheckStatus (status);
58                 }
59
60                 public Color Color {
61                         get {
62                                 return color;
63                         }
64                         set {
65                                 if (isModifiable) {
66                                         color = value;
67                                         Status status = GDIPlus.GdipSetSolidFillColor (nativeObject, value.ToArgb ());
68                                         GDIPlus.CheckStatus (status);
69                                 }
70                                 else
71                                         throw new ArgumentException ("This SolidBrush object can't be modified.");
72                         }
73                 }
74                 
75                 public override object Clone()
76                 {
77                         IntPtr clonePtr;
78                         Status status = GDIPlus.GdipCloneBrush (nativeObject, out clonePtr);
79                         GDIPlus.CheckStatus (status);
80         
81                         return new SolidBrush (clonePtr);
82                 }
83                 
84                 protected override void Dispose (bool disposing)
85                 {
86                         if (disposing == true && isModifiable == false) {
87                                 throw new ArgumentException ("This SolidBrush object can't be modified.");
88                         }
89
90                         base.Dispose (disposing); 
91                 }
92         }
93 }
94