Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / CommonUI / System / Drawing / SolidBrush.cs / 1305376 / SolidBrush.cs
//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//-----------------------------------------------------------------------------
namespace System.Drawing {
using System.Runtime.InteropServices;
using System.Diagnostics;
using System;
using Microsoft.Win32;
using System.ComponentModel;
using System.Drawing.Internal;
using System.Runtime.Versioning;
///
///
///
/// Defines a brush made up of a single color. Brushes are
/// used to fill graphics shapes such as rectangles, ellipses, pies, polygons, and paths.
///
///
public sealed class SolidBrush : Brush, ISystemColorTracker {
// GDI+ doesn't understand system colors, so we need to cache the value here
private Color color = Color.Empty;
private bool immutable;
/**
* Create a new solid fill brush object
*/
///
///
///
/// Initializes a new instance of the class of the specified
/// color.
///
///
[ResourceExposure(ResourceScope.Process)]
[ResourceConsumption(ResourceScope.Process)]
public SolidBrush(Color color)
{
this.color = color;
IntPtr brush = IntPtr.Zero;
int status = SafeNativeMethods.Gdip.GdipCreateSolidFill(this.color.ToArgb(), out brush);
if (status != SafeNativeMethods.Gdip.Ok)
throw SafeNativeMethods.Gdip.StatusException(status);
SetNativeBrushInternal(brush);
if (color.IsSystemColor)
SystemColorTracker.Add(this);
}
[ResourceExposure(ResourceScope.Process)]
[ResourceConsumption(ResourceScope.Process)]
internal SolidBrush(Color color, bool immutable) : this(color) {
this.immutable = immutable;
}
///
/// Constructor to initialized this object from a GDI+ Brush native pointer.
///
internal SolidBrush( IntPtr nativeBrush )
{
Debug.Assert( nativeBrush != IntPtr.Zero, "Initializing native brush with null." );
SetNativeBrushInternal( nativeBrush );
}
///
///
/// Creates an exact copy of this .
///
[ResourceExposure(ResourceScope.Process)]
[ResourceConsumption(ResourceScope.Process)]
public override object Clone()
{
IntPtr cloneBrush = IntPtr.Zero;
int status = SafeNativeMethods.Gdip.GdipCloneBrush(new HandleRef(this, this.NativeBrush), out cloneBrush);
if (status != SafeNativeMethods.Gdip.Ok)
throw SafeNativeMethods.Gdip.StatusException(status);
// We intentionally lose the "immutable" bit.
return new SolidBrush(cloneBrush);
}
///
protected override void Dispose(bool disposing) {
if (!disposing) {
immutable = false;
}
else if (immutable) {
throw new ArgumentException(SR.GetString(SR.CantChangeImmutableObjects, "Brush"));
}
base.Dispose(disposing);
}
///
///
///
/// The color of this .
///
///
public Color Color {
get
{
if (this.color == Color.Empty)
{
int colorARGB = 0;
int status = SafeNativeMethods.Gdip.GdipGetSolidFillColor(new HandleRef(this, this.NativeBrush), out colorARGB);
if (status != SafeNativeMethods.Gdip.Ok)
throw SafeNativeMethods.Gdip.StatusException(status);
this.color = Color.FromArgb(colorARGB);
}
// GDI+ doesn't understand system colors, so we can't use GdipGetSolidFillColor in the general case
return this.color;
}
set
{
if (immutable)
{
throw new ArgumentException(SR.GetString(SR.CantChangeImmutableObjects, "Brush"));
}
if( this.color != value )
{
Color oldColor = this.color;
InternalSetColor(value);
//
if (value.IsSystemColor && !oldColor.IsSystemColor)
{
SystemColorTracker.Add(this);
}
}
}
}
// Sets the color even if the brush is considered immutable
private void InternalSetColor(Color value) {
int status = SafeNativeMethods.Gdip.GdipSetSolidFillColor(new HandleRef(this, this.NativeBrush), value.ToArgb());
if (status != SafeNativeMethods.Gdip.Ok)
throw SafeNativeMethods.Gdip.StatusException(status);
this.color = value;
}
///
///
void ISystemColorTracker.OnSystemColorChanged() {
if( this.NativeBrush != IntPtr.Zero ){
InternalSetColor(color);
}
}
}
}
// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//-----------------------------------------------------------------------------
namespace System.Drawing {
using System.Runtime.InteropServices;
using System.Diagnostics;
using System;
using Microsoft.Win32;
using System.ComponentModel;
using System.Drawing.Internal;
using System.Runtime.Versioning;
///
///
///
/// Defines a brush made up of a single color. Brushes are
/// used to fill graphics shapes such as rectangles, ellipses, pies, polygons, and paths.
///
///
public sealed class SolidBrush : Brush, ISystemColorTracker {
// GDI+ doesn't understand system colors, so we need to cache the value here
private Color color = Color.Empty;
private bool immutable;
/**
* Create a new solid fill brush object
*/
///
///
///
/// Initializes a new instance of the class of the specified
/// color.
///
///
[ResourceExposure(ResourceScope.Process)]
[ResourceConsumption(ResourceScope.Process)]
public SolidBrush(Color color)
{
this.color = color;
IntPtr brush = IntPtr.Zero;
int status = SafeNativeMethods.Gdip.GdipCreateSolidFill(this.color.ToArgb(), out brush);
if (status != SafeNativeMethods.Gdip.Ok)
throw SafeNativeMethods.Gdip.StatusException(status);
SetNativeBrushInternal(brush);
if (color.IsSystemColor)
SystemColorTracker.Add(this);
}
[ResourceExposure(ResourceScope.Process)]
[ResourceConsumption(ResourceScope.Process)]
internal SolidBrush(Color color, bool immutable) : this(color) {
this.immutable = immutable;
}
///
/// Constructor to initialized this object from a GDI+ Brush native pointer.
///
internal SolidBrush( IntPtr nativeBrush )
{
Debug.Assert( nativeBrush != IntPtr.Zero, "Initializing native brush with null." );
SetNativeBrushInternal( nativeBrush );
}
///
///
/// Creates an exact copy of this .
///
[ResourceExposure(ResourceScope.Process)]
[ResourceConsumption(ResourceScope.Process)]
public override object Clone()
{
IntPtr cloneBrush = IntPtr.Zero;
int status = SafeNativeMethods.Gdip.GdipCloneBrush(new HandleRef(this, this.NativeBrush), out cloneBrush);
if (status != SafeNativeMethods.Gdip.Ok)
throw SafeNativeMethods.Gdip.StatusException(status);
// We intentionally lose the "immutable" bit.
return new SolidBrush(cloneBrush);
}
///
protected override void Dispose(bool disposing) {
if (!disposing) {
immutable = false;
}
else if (immutable) {
throw new ArgumentException(SR.GetString(SR.CantChangeImmutableObjects, "Brush"));
}
base.Dispose(disposing);
}
///
///
///
/// The color of this .
///
///
public Color Color {
get
{
if (this.color == Color.Empty)
{
int colorARGB = 0;
int status = SafeNativeMethods.Gdip.GdipGetSolidFillColor(new HandleRef(this, this.NativeBrush), out colorARGB);
if (status != SafeNativeMethods.Gdip.Ok)
throw SafeNativeMethods.Gdip.StatusException(status);
this.color = Color.FromArgb(colorARGB);
}
// GDI+ doesn't understand system colors, so we can't use GdipGetSolidFillColor in the general case
return this.color;
}
set
{
if (immutable)
{
throw new ArgumentException(SR.GetString(SR.CantChangeImmutableObjects, "Brush"));
}
if( this.color != value )
{
Color oldColor = this.color;
InternalSetColor(value);
//
if (value.IsSystemColor && !oldColor.IsSystemColor)
{
SystemColorTracker.Add(this);
}
}
}
}
// Sets the color even if the brush is considered immutable
private void InternalSetColor(Color value) {
int status = SafeNativeMethods.Gdip.GdipSetSolidFillColor(new HandleRef(this, this.NativeBrush), value.ToArgb());
if (status != SafeNativeMethods.Gdip.Ok)
throw SafeNativeMethods.Gdip.StatusException(status);
this.color = value;
}
///
///
void ISystemColorTracker.OnSystemColorChanged() {
if( this.NativeBrush != IntPtr.Zero ){
InternalSetColor(color);
}
}
}
}
// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- SafePointer.cs
- ClusterRegistryConfigurationProvider.cs
- UriScheme.cs
- DrawingContextDrawingContextWalker.cs
- DelegateSerializationHolder.cs
- GeneralTransform3DTo2D.cs
- InternalsVisibleToAttribute.cs
- WeakReferenceEnumerator.cs
- TcpServerChannel.cs
- KerberosTicketHashIdentifierClause.cs
- PersistenceProviderFactory.cs
- ProcessHostServerConfig.cs
- UnsafeNativeMethodsTablet.cs
- UTF32Encoding.cs
- RelationshipFixer.cs
- VisualStyleElement.cs
- BuildProvider.cs
- DbResourceAllocator.cs
- DiscardableAttribute.cs
- SqlCachedBuffer.cs
- ExternalException.cs
- IisTraceWebEventProvider.cs
- EnumValAlphaComparer.cs
- parserscommon.cs
- HWStack.cs
- StatusBarAutomationPeer.cs
- BrowserCapabilitiesCodeGenerator.cs
- RadioButtonAutomationPeer.cs
- WindowsGraphics.cs
- TextTrailingWordEllipsis.cs
- WeakReference.cs
- Int32.cs
- XmlSchemaAnnotation.cs
- ResponseStream.cs
- TimeZone.cs
- XmlReturnReader.cs
- MailSettingsSection.cs
- EqualityArray.cs
- CustomSignedXml.cs
- ExpressionReplacer.cs
- TrackPoint.cs
- XamlSerializationHelper.cs
- CredentialCache.cs
- OracleColumn.cs
- DocumentPageView.cs
- UnmanagedMarshal.cs
- Literal.cs
- SharedStream.cs
- SmiContext.cs
- CryptoKeySecurity.cs
- ItemList.cs
- ComplexTypeEmitter.cs
- EventEntry.cs
- EndpointAddressMessageFilter.cs
- SrgsRulesCollection.cs
- CapabilitiesPattern.cs
- AttributeCollection.cs
- RegistryKey.cs
- ScrollChrome.cs
- ReflectionPermission.cs
- lengthconverter.cs
- TypeConverterAttribute.cs
- DataControlReferenceCollection.cs
- EventDescriptorCollection.cs
- ImportCatalogPart.cs
- SqlRowUpdatingEvent.cs
- ElementHost.cs
- AtomPub10CategoriesDocumentFormatter.cs
- CurrentTimeZone.cs
- CancelRequestedQuery.cs
- RouteValueExpressionBuilder.cs
- XmlHelper.cs
- RegisteredArrayDeclaration.cs
- PropertyFilterAttribute.cs
- BitmapEffectInputConnector.cs
- SystemIPInterfaceProperties.cs
- ResourceDisplayNameAttribute.cs
- ActionNotSupportedException.cs
- ToolStripContextMenu.cs
- RegionIterator.cs
- XmlSchemaAnnotation.cs
- Visual3D.cs
- PagerSettings.cs
- RadioButton.cs
- MembershipSection.cs
- ToolStripPanelCell.cs
- DataProtection.cs
- LabelDesigner.cs
- SqlXml.cs
- DbDataSourceEnumerator.cs
- VerificationException.cs
- Composition.cs
- ImageBrush.cs
- ProcessModule.cs
- WebPartTransformerAttribute.cs
- ComplexTypeEmitter.cs
- HttpRuntimeSection.cs
- PeerNameRegistration.cs
- XmlCharacterData.cs
- ClassImporter.cs