Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / Misc / GDI / DeviceContexts.cs / 3 / 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)) { activeDeviceContexts.Add(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.
Link Menu
This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- PropertiesTab.cs
- EntityTypeEmitter.cs
- Propagator.Evaluator.cs
- RegistrySecurity.cs
- RoutedUICommand.cs
- _AcceptOverlappedAsyncResult.cs
- WebPartConnectionCollection.cs
- BinaryWriter.cs
- StandardCommands.cs
- RSAOAEPKeyExchangeFormatter.cs
- SessionStateUtil.cs
- PropertyEmitter.cs
- XmlEntityReference.cs
- DocumentApplicationJournalEntry.cs
- XamlTypeMapperSchemaContext.cs
- HebrewNumber.cs
- sitestring.cs
- CanExecuteRoutedEventArgs.cs
- SqlFileStream.cs
- HorizontalAlignConverter.cs
- XmlCharCheckingReader.cs
- CmsInterop.cs
- ObjectNotFoundException.cs
- DataGridCellItemAutomationPeer.cs
- PropertyValue.cs
- MenuBase.cs
- NewItemsContextMenuStrip.cs
- IImplicitResourceProvider.cs
- ManualResetEventSlim.cs
- Tuple.cs
- StylusDevice.cs
- UpdateCommandGenerator.cs
- SimpleWebHandlerParser.cs
- MarkupExtensionParser.cs
- SoapMessage.cs
- BuildResultCache.cs
- RoutingConfiguration.cs
- MtomMessageEncodingBindingElement.cs
- OleDbConnection.cs
- WizardPanelChangingEventArgs.cs
- Pair.cs
- ConcurrencyBehavior.cs
- XPathArrayIterator.cs
- PolyQuadraticBezierSegment.cs
- ArcSegment.cs
- DetailsView.cs
- TextFormatterImp.cs
- WindowsIPAddress.cs
- SchemaMapping.cs
- StartUpEventArgs.cs
- ApplicationId.cs
- XpsPackagingException.cs
- DBDataPermissionAttribute.cs
- NavigationPropertyEmitter.cs
- HeaderElement.cs
- PropertyManager.cs
- CellConstantDomain.cs
- RootProfilePropertySettingsCollection.cs
- TextParagraphCache.cs
- IndentedWriter.cs
- PagePropertiesChangingEventArgs.cs
- MsmqBindingMonitor.cs
- ListManagerBindingsCollection.cs
- XmlILStorageConverter.cs
- PropertyValue.cs
- ListItemCollection.cs
- XmlSchemaSimpleContentRestriction.cs
- DictionarySurrogate.cs
- InvalidComObjectException.cs
- TextRangeEditLists.cs
- BamlTreeUpdater.cs
- DragSelectionMessageFilter.cs
- Message.cs
- MenuItemAutomationPeer.cs
- ClonableStack.cs
- ObjectListFieldsPage.cs
- ScrollContentPresenter.cs
- MarshalByValueComponent.cs
- KeyGesture.cs
- TemplatedWizardStep.cs
- Point3DAnimation.cs
- DbDataSourceEnumerator.cs
- TreeView.cs
- ValidatorCollection.cs
- PageStatePersister.cs
- XmlSchemaInferenceException.cs
- ClientFormsIdentity.cs
- Boolean.cs
- Point3DIndependentAnimationStorage.cs
- ValidatingPropertiesEventArgs.cs
- XamlToRtfWriter.cs
- CodeTypeReferenceExpression.cs
- MouseGestureConverter.cs
- XmlSchema.cs
- AutomationEvent.cs
- Metafile.cs
- UnicastIPAddressInformationCollection.cs
- ConfigDefinitionUpdates.cs
- ModuleElement.cs
- QilXmlReader.cs