Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / ndp / fx / src / Misc / GDI / DeviceContexts.cs / 1 / DeviceContexts.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- #if WGCM_TEST_SUITE // Enable tracking when built for the test suites. #define TRACK_HDC #define GDI_FONT_CACHE_TRACK #endif #if WINFORMS_NAMESPACE namespace System.Windows.Forms.Internal #elif DRAWING_NAMESPACE namespace System.Drawing.Internal #else namespace System.Experimental.Gdi #endif { using System; using System.Collections.Generic; using System.Internal; using System.Diagnostics; using System.Drawing; using System.Threading; using Microsoft.Win32; ////// Keeps a cache of some graphics primitives. /// Created to improve performance of TextRenderer.MeasureText methods that don't receive a WindowsGraphics. /// This class mantains a cache of MRU WindowsFont objects in the process. (See VSWhidbey#301492). /// #if WINFORMS_PUBLIC_GRAPHICS_LIBRARY public #else internal #endif static class DeviceContexts { [ThreadStatic] private static ClientUtils.WeakRefCollection activeDeviceContexts; ////// WindowsGraphicsCacheManager needs to track DeviceContext /// objects so it can ask them if a font is in use before they /// it's deleted. internal static void AddDeviceContext(DeviceContext dc) { if (activeDeviceContexts == null) { activeDeviceContexts = new ClientUtils.WeakRefCollection(); activeDeviceContexts.RefCheckThreshold = 20; // See DevDiv#82664 (the repro app attached to this bug was used to determine this number). } if (!activeDeviceContexts.Contains(dc)) { dc.Disposing += new EventHandler(OnDcDisposing); activeDeviceContexts.Add(dc); } } private static void OnDcDisposing(object sender, EventArgs e) { DeviceContext dc = sender as DeviceContext; if (dc != null) { dc.Disposing -= new EventHandler(OnDcDisposing); RemoveDeviceContext(dc); } } internal static void RemoveDeviceContext(DeviceContext dc) { if (activeDeviceContexts == null) { return; } activeDeviceContexts.RemoveByHashCode(dc); } #if !DRAWING_NAMESPACE internal static bool IsFontInUse(WindowsFont wf) { if (wf == null) { return false; } for (int i = 0; i < activeDeviceContexts.Count; i++) { DeviceContext dc = activeDeviceContexts[i] as DeviceContext; if (dc != null && (dc.ActiveFont == wf || dc.IsFontOnContextStack(wf))) { return true; } } return false; } #endif } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ // // Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- #if WGCM_TEST_SUITE // Enable tracking when built for the test suites. #define TRACK_HDC #define GDI_FONT_CACHE_TRACK #endif #if WINFORMS_NAMESPACE namespace System.Windows.Forms.Internal #elif DRAWING_NAMESPACE namespace System.Drawing.Internal #else namespace System.Experimental.Gdi #endif { using System; using System.Collections.Generic; using System.Internal; using System.Diagnostics; using System.Drawing; using System.Threading; using Microsoft.Win32; ////// Keeps a cache of some graphics primitives. /// Created to improve performance of TextRenderer.MeasureText methods that don't receive a WindowsGraphics. /// This class mantains a cache of MRU WindowsFont objects in the process. (See VSWhidbey#301492). /// #if WINFORMS_PUBLIC_GRAPHICS_LIBRARY public #else internal #endif static class DeviceContexts { [ThreadStatic] private static ClientUtils.WeakRefCollection activeDeviceContexts; ////// WindowsGraphicsCacheManager needs to track DeviceContext /// objects so it can ask them if a font is in use before they /// it's deleted. internal static void AddDeviceContext(DeviceContext dc) { if (activeDeviceContexts == null) { activeDeviceContexts = new ClientUtils.WeakRefCollection(); activeDeviceContexts.RefCheckThreshold = 20; // See DevDiv#82664 (the repro app attached to this bug was used to determine this number). } if (!activeDeviceContexts.Contains(dc)) { dc.Disposing += new EventHandler(OnDcDisposing); activeDeviceContexts.Add(dc); } } private static void OnDcDisposing(object sender, EventArgs e) { DeviceContext dc = sender as DeviceContext; if (dc != null) { dc.Disposing -= new EventHandler(OnDcDisposing); RemoveDeviceContext(dc); } } internal static void RemoveDeviceContext(DeviceContext dc) { if (activeDeviceContexts == null) { return; } activeDeviceContexts.RemoveByHashCode(dc); } #if !DRAWING_NAMESPACE internal static bool IsFontInUse(WindowsFont wf) { if (wf == null) { return false; } for (int i = 0; i < activeDeviceContexts.Count; i++) { DeviceContext dc = activeDeviceContexts[i] as DeviceContext; if (dc != null && (dc.ActiveFont == wf || dc.IsFontOnContextStack(wf))) { return true; } } return false; } #endif } } // 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
- EncryptedKeyIdentifierClause.cs
- WindowsListViewGroupSubsetLink.cs
- BindingContext.cs
- FastPropertyAccessor.cs
- DocComment.cs
- BatchWriter.cs
- ComMethodElementCollection.cs
- Vector3DAnimation.cs
- RuntimeConfigLKG.cs
- SignatureDescription.cs
- WebPartConnectionsConfigureVerb.cs
- DrawingCollection.cs
- PersistChildrenAttribute.cs
- SqlInternalConnection.cs
- TextRangeBase.cs
- PropertyValueUIItem.cs
- ArcSegment.cs
- CacheEntry.cs
- QuerySettings.cs
- Root.cs
- EventPropertyMap.cs
- TableLayoutPanelDesigner.cs
- MimeTypePropertyAttribute.cs
- _ShellExpression.cs
- GenericUI.cs
- CustomErrorsSectionWrapper.cs
- CheckBoxPopupAdapter.cs
- BulletedListDesigner.cs
- IRCollection.cs
- RuntimeWrappedException.cs
- SyntaxCheck.cs
- ErrorInfoXmlDocument.cs
- basenumberconverter.cs
- KeyValuePairs.cs
- MetadataCache.cs
- InheritanceContextHelper.cs
- DetailsViewInsertEventArgs.cs
- AffineTransform3D.cs
- PageWrapper.cs
- _NestedSingleAsyncResult.cs
- FontEmbeddingManager.cs
- Stroke2.cs
- HtmlHead.cs
- OutputScope.cs
- TypeResolvingOptions.cs
- ScriptReference.cs
- SqlFacetAttribute.cs
- Byte.cs
- LocalBuilder.cs
- _TLSstream.cs
- FixedNode.cs
- UnsafeNativeMethods.cs
- TextElementAutomationPeer.cs
- JsonFormatWriterGenerator.cs
- NavigationFailedEventArgs.cs
- HtmlShimManager.cs
- PasswordTextContainer.cs
- LabelEditEvent.cs
- OdbcReferenceCollection.cs
- TypeDescriptorContext.cs
- TreeViewAutomationPeer.cs
- WorkBatch.cs
- SchemaInfo.cs
- AddValidationError.cs
- EntityContainer.cs
- DynamicActivity.cs
- JsonSerializer.cs
- PointLightBase.cs
- GetPageNumberCompletedEventArgs.cs
- Int64Storage.cs
- NativeMethods.cs
- HttpRuntimeSection.cs
- DescendantOverDescendantQuery.cs
- XmlLanguageConverter.cs
- AbstractDataSvcMapFileLoader.cs
- NonVisualControlAttribute.cs
- TextRangeSerialization.cs
- BufferBuilder.cs
- TimeSpanMinutesOrInfiniteConverter.cs
- WebConfigurationManager.cs
- ElapsedEventArgs.cs
- SqlCharStream.cs
- RuntimeWrappedException.cs
- Propagator.ExtentPlaceholderCreator.cs
- SymmetricSecurityBindingElement.cs
- PartialCachingAttribute.cs
- ExtendedProperty.cs
- WSSecureConversation.cs
- PinProtectionHelper.cs
- SettingsPropertyNotFoundException.cs
- MailSettingsSection.cs
- DictionaryItemsCollection.cs
- Codec.cs
- BindingsCollection.cs
- ProxyAttribute.cs
- _HeaderInfo.cs
- TextTreeObjectNode.cs
- Int32CollectionConverter.cs
- WorkflowMessageEventArgs.cs
- HttpCacheVaryByContentEncodings.cs