Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / CommonUI / System / Drawing / Brush.cs / 1 / Brush.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /*************************************************************************\ * * Copyright (c) 1998-1999, Microsoft Corp. All Rights Reserved. * * Module Name: * * Brush.cs * * Abstract: * * COM+ wrapper for GDI+ brush objects * * Revision History: * * 01/11/1999 davidx * Code review. * * 12/15/1998 [....] * Created it. * \**************************************************************************/ namespace System.Drawing { using System.Runtime.InteropServices; using System.Diagnostics; using System; using System.ComponentModel; using Microsoft.Win32; using System.Drawing; using System.Drawing.Internal; using System.Globalization; /** * Represent a Brush object */ ////// /// public abstract class Brush : MarshalByRefObject, ICloneable, IDisposable { #if FINALIZATION_WATCH private string allocationSite = Graphics.GetAllocationStack(); #endif // handle to native GDI+ brush object to be used on demand. ////// Classes derrived from this abstract base class define objects used to fill the /// interiors of graphical shapes such as rectangles, ellipses, pies, polygons, and paths. /// ///private IntPtr nativeBrush; /// /// /// When overriden in a derived class, creates /// an exact copy of this public abstract object Clone(); ///. /// /// Sets the native GDI+ brush reference. /// Note: This method is intended to be used by derived classes only! (internal protected doesn't work as in C++). /// protected internal void SetNativeBrush(IntPtr brush) { Debug.Assert( brush != IntPtr.Zero, "WARNING: Assigning null to the GDI+ native brush object."); Debug.Assert( this.nativeBrush == IntPtr.Zero, "WARNING: Initialized GDI+ native brush object being assigned a new value."); this.nativeBrush = brush; } ////// Gets the GDI+ native object reference. Triggers GDI+ obect initialization. /// [Browsable(false), EditorBrowsable(EditorBrowsableState.Never)] internal IntPtr NativeBrush { get { //Need to comment this line out to allow for checking this.NativePen == IntPtr.Zero. //Debug.Assert(this.nativeBrush != IntPtr.Zero, "this.nativeBrush == null." ); return this.nativeBrush; } } ////// /// public void Dispose() { Dispose(true); GC.SuppressFinalize(this); } ////// Deletes this ///. /// protected virtual void Dispose(bool disposing) { #if FINALIZATION_WATCH if (!disposing && nativeBrush != IntPtr.Zero ) Debug.WriteLine("**********************\nDisposed through finalization:\n" + allocationSite); #endif if (this.nativeBrush != IntPtr.Zero) { try{ #if DEBUG int status = #endif SafeNativeMethods.Gdip.GdipDeleteBrush(new HandleRef(this, this.nativeBrush)); #if DEBUG Debug.Assert(status == SafeNativeMethods.Gdip.Ok, "GDI+ returned an error status: " + status.ToString(CultureInfo.InvariantCulture)); #endif } catch( Exception ex ){ if( ClientUtils.IsSecurityOrCriticalException( ex ) ) { throw; } Debug.Fail( "Exception thrown during Dispose: " + ex.ToString() ); } finally{ this.nativeBrush = IntPtr.Zero; } } } /** * Object cleanup */ /// /// /// ~Brush() { Dispose(false); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved./// Releases memory allocated for this ///. ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- DSACryptoServiceProvider.cs
- SystemThemeKey.cs
- HttpPostedFile.cs
- DirectoryInfo.cs
- StateItem.cs
- EventlogProvider.cs
- PaintEvent.cs
- HttpApplication.cs
- CodeIdentifiers.cs
- HandlerBase.cs
- StartUpEventArgs.cs
- LineSegment.cs
- SerializerWriterEventHandlers.cs
- Propagator.ExtentPlaceholderCreator.cs
- WebPartConnectionsCancelEventArgs.cs
- MiniMapControl.xaml.cs
- ScriptResourceDefinition.cs
- _emptywebproxy.cs
- ToolboxComponentsCreatedEventArgs.cs
- TimelineCollection.cs
- DataGridItem.cs
- PeerConnector.cs
- GeneralTransform3D.cs
- SingleAnimationUsingKeyFrames.cs
- OLEDB_Enum.cs
- XamlToRtfWriter.cs
- RangeValuePatternIdentifiers.cs
- CodeDirectionExpression.cs
- MdiWindowListItemConverter.cs
- Style.cs
- EmptyEnumerator.cs
- FlowLayout.cs
- SplitContainer.cs
- SamlSubject.cs
- ToolBar.cs
- ToolBarButton.cs
- ScriptReference.cs
- PanelStyle.cs
- streamingZipPartStream.cs
- TCPListener.cs
- TransactionBehavior.cs
- EntityContainerEntitySetDefiningQuery.cs
- XPathConvert.cs
- XsdDuration.cs
- DataSourceDesigner.cs
- ComponentManagerBroker.cs
- CapabilitiesState.cs
- WebPartVerbsEventArgs.cs
- SimpleWebHandlerParser.cs
- MatrixCamera.cs
- documentation.cs
- IsolationInterop.cs
- AccessDataSource.cs
- ServiceBusyException.cs
- ValidatedControlConverter.cs
- CommandEventArgs.cs
- ClientScriptManagerWrapper.cs
- EditorPart.cs
- SchemaNotation.cs
- XmlEncoding.cs
- Brush.cs
- FillRuleValidation.cs
- CharacterBuffer.cs
- StringDictionaryCodeDomSerializer.cs
- EdmToObjectNamespaceMap.cs
- OdbcConnectionHandle.cs
- Literal.cs
- ObjectStateEntryDbUpdatableDataRecord.cs
- DbParameterHelper.cs
- Events.cs
- SqlProfileProvider.cs
- HostingEnvironmentSection.cs
- SpellerError.cs
- TabControlCancelEvent.cs
- httpapplicationstate.cs
- ApplicationDirectoryMembershipCondition.cs
- MsmqActivation.cs
- SqlClientMetaDataCollectionNames.cs
- mactripleDES.cs
- ChangePassword.cs
- ServerIdentity.cs
- RootBuilder.cs
- FormatterConverter.cs
- TabRenderer.cs
- ConfigurationElementCollection.cs
- XmlObjectSerializerReadContextComplex.cs
- NamedPermissionSet.cs
- DataGridViewCell.cs
- WindowsListViewItem.cs
- DbDataRecord.cs
- counter.cs
- CAGDesigner.cs
- ExtensionElementCollection.cs
- StylusButtonEventArgs.cs
- PathData.cs
- hresults.cs
- URI.cs
- Canvas.cs
- ImageFormat.cs
- SystemInfo.cs