Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Core / CSharp / System / Windows / Media / DrawingContext.cs / 1305600 / DrawingContext.cs
//------------------------------------------------------------------------------
// Microsoft Avalon
// Copyright (c) Microsoft Corporation, 2003
//
// File: DrawingContext.cs
//
// History:
// [....]: 04/19/2003
// Created it based on the RetainedDrawingContext used in the AvPhat branch.
// [....]: 07/02/2003
// Turned this class into an abstract base class for RetainedDrawingContext
// and PaintingDrawingContext.
//
//-----------------------------------------------------------------------------
using System;
using System.Security.Permissions;
using System.Windows;
using System.Windows.Threading;
using System.Windows.Media.Animation;
using System.Windows.Media;
using System.Diagnostics;
using MS.Internal;
using System.Runtime.InteropServices;
using MS.Utility;
namespace System.Windows.Media
{
///
/// Drawing context.
///
public abstract partial class DrawingContext : DispatcherObject, IDisposable
{
#region Constructors
///
/// Default constructor for DrawingContext - this uses the current Dispatcher.
///
internal DrawingContext()
{
// Nothing to do here
}
#endregion Constructors
#region Public Methods
///
/// Draw Text at the location specified.
///
/// The FormattedText to draw.
/// The location at which to draw the text.
///
/// This call is illegal if this object has already been closed or disposed.
///
public void DrawText(FormattedText formattedText,
Point origin)
{
EventTrace.EasyTraceEvent(EventTrace.Keyword.KeywordGeneral, EventTrace.Level.Verbose, EventTrace.Event.WClientStringBegin, "DrawingContext.DrawText Start");
VerifyApiNonstructuralChange();
#if DEBUG
MediaTrace.DrawingContextOp.Trace("DrawText(const)");
#endif
if (formattedText == null)
{
return;
}
formattedText.Draw(this, origin);
EventTrace.EasyTraceEvent(EventTrace.Keyword.KeywordGeneral, EventTrace.Level.Verbose, EventTrace.Event.WClientStringEnd, "DrawingContext.DrawText End");
}
///
/// Closes the DrawingContext and flushes the content.
/// Afterwards the DrawingContext can not be used anymore.
/// This call does not require all Push calls to have been Popped.
///
///
/// This call is illegal if this object has already been closed or disposed.
///
public abstract void Close();
///
/// This is the same as the Close call:
/// Closes the DrawingContext and flushes the content.
/// Afterwards the DrawingContext can not be used anymore.
/// This call does not require all Push calls to have been Popped.
///
///
/// This call is illegal if this object has already been closed or disposed.
///
void IDisposable.Dispose()
{
// Call a virtual method for derived Dispose implementations
//
// Attempting to override a explicit interface member implementation causes
// the most-derived implementation to always be called, and the base
// implementation becomes uncallable. But FxCop requires the base Dispose
// method is always be called. To avoid this situation, we use the *Core
// pattern for derived classes, instead of attempting to override
// IDisposable.Dispose.
VerifyAccess();
DisposeCore();
GC.SuppressFinalize(this);
}
#endregion Public Methods
#region Protected Methods
///
/// Dispose functionality implemented by subclasses
///
///
/// This call is illegal if this object has already been closed or disposed.
///
protected abstract void DisposeCore();
///
/// This verifies that the API can be called for read only access.
///
protected virtual void VerifyApiNonstructuralChange()
{
this.VerifyAccess();
}
#endregion Protected Methods
}
}
// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
// Copyright (c) Microsoft Corporation. All rights reserved.
//------------------------------------------------------------------------------
// Microsoft Avalon
// Copyright (c) Microsoft Corporation, 2003
//
// File: DrawingContext.cs
//
// History:
// [....]: 04/19/2003
// Created it based on the RetainedDrawingContext used in the AvPhat branch.
// [....]: 07/02/2003
// Turned this class into an abstract base class for RetainedDrawingContext
// and PaintingDrawingContext.
//
//-----------------------------------------------------------------------------
using System;
using System.Security.Permissions;
using System.Windows;
using System.Windows.Threading;
using System.Windows.Media.Animation;
using System.Windows.Media;
using System.Diagnostics;
using MS.Internal;
using System.Runtime.InteropServices;
using MS.Utility;
namespace System.Windows.Media
{
///
/// Drawing context.
///
public abstract partial class DrawingContext : DispatcherObject, IDisposable
{
#region Constructors
///
/// Default constructor for DrawingContext - this uses the current Dispatcher.
///
internal DrawingContext()
{
// Nothing to do here
}
#endregion Constructors
#region Public Methods
///
/// Draw Text at the location specified.
///
/// The FormattedText to draw.
/// The location at which to draw the text.
///
/// This call is illegal if this object has already been closed or disposed.
///
public void DrawText(FormattedText formattedText,
Point origin)
{
EventTrace.EasyTraceEvent(EventTrace.Keyword.KeywordGeneral, EventTrace.Level.Verbose, EventTrace.Event.WClientStringBegin, "DrawingContext.DrawText Start");
VerifyApiNonstructuralChange();
#if DEBUG
MediaTrace.DrawingContextOp.Trace("DrawText(const)");
#endif
if (formattedText == null)
{
return;
}
formattedText.Draw(this, origin);
EventTrace.EasyTraceEvent(EventTrace.Keyword.KeywordGeneral, EventTrace.Level.Verbose, EventTrace.Event.WClientStringEnd, "DrawingContext.DrawText End");
}
///
/// Closes the DrawingContext and flushes the content.
/// Afterwards the DrawingContext can not be used anymore.
/// This call does not require all Push calls to have been Popped.
///
///
/// This call is illegal if this object has already been closed or disposed.
///
public abstract void Close();
///
/// This is the same as the Close call:
/// Closes the DrawingContext and flushes the content.
/// Afterwards the DrawingContext can not be used anymore.
/// This call does not require all Push calls to have been Popped.
///
///
/// This call is illegal if this object has already been closed or disposed.
///
void IDisposable.Dispose()
{
// Call a virtual method for derived Dispose implementations
//
// Attempting to override a explicit interface member implementation causes
// the most-derived implementation to always be called, and the base
// implementation becomes uncallable. But FxCop requires the base Dispose
// method is always be called. To avoid this situation, we use the *Core
// pattern for derived classes, instead of attempting to override
// IDisposable.Dispose.
VerifyAccess();
DisposeCore();
GC.SuppressFinalize(this);
}
#endregion Public Methods
#region Protected Methods
///
/// Dispose functionality implemented by subclasses
///
///
/// This call is illegal if this object has already been closed or disposed.
///
protected abstract void DisposeCore();
///
/// This verifies that the API can be called for read only access.
///
protected virtual void VerifyApiNonstructuralChange()
{
this.VerifyAccess();
}
#endregion Protected Methods
}
}
// 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
- DataGridViewAddColumnDialog.cs
- MarkupProperty.cs
- StringUtil.cs
- TextRange.cs
- StringUtil.cs
- HandlerElement.cs
- EntityDataSourceContainerNameConverter.cs
- DecodeHelper.cs
- HttpContext.cs
- MessageBox.cs
- IndependentAnimationStorage.cs
- ButtonBaseDesigner.cs
- EdmValidator.cs
- ExpressionNode.cs
- XmlSchemaChoice.cs
- Point4DConverter.cs
- SecurityTokenTypes.cs
- Condition.cs
- Tracking.cs
- Predicate.cs
- PageStatePersister.cs
- FrameworkContentElementAutomationPeer.cs
- Container.cs
- InitializerFacet.cs
- IteratorDescriptor.cs
- DataGridViewTextBoxCell.cs
- MetabaseServerConfig.cs
- NodeLabelEditEvent.cs
- ReadOnlyHierarchicalDataSourceView.cs
- PlatformNotSupportedException.cs
- Function.cs
- DoubleAnimationUsingPath.cs
- ToolStripSettings.cs
- Overlapped.cs
- WindowsPrincipal.cs
- RuleSetDialog.Designer.cs
- ParenthesizePropertyNameAttribute.cs
- WebCategoryAttribute.cs
- DbParameterHelper.cs
- Buffer.cs
- TypographyProperties.cs
- BuildProviderUtils.cs
- ListCollectionView.cs
- StreamWriter.cs
- BrowserDefinitionCollection.cs
- AuthorizationPolicyTypeElementCollection.cs
- ExceptionRoutedEventArgs.cs
- RewritingProcessor.cs
- ZipIOZip64EndOfCentralDirectoryBlock.cs
- TypefaceMetricsCache.cs
- DbQueryCommandTree.cs
- ResXBuildProvider.cs
- SqlNode.cs
- RangeValuePattern.cs
- TreeView.cs
- DiagnosticsElement.cs
- AtlasWeb.Designer.cs
- SqlDataSourceStatusEventArgs.cs
- WindowsImpersonationContext.cs
- XmlMembersMapping.cs
- FontCollection.cs
- PersonalizationProviderHelper.cs
- SeverityFilter.cs
- SmiRecordBuffer.cs
- CookielessHelper.cs
- PeerCollaborationPermission.cs
- XPathParser.cs
- CssTextWriter.cs
- IntersectQueryOperator.cs
- ClassicBorderDecorator.cs
- SiteMapDataSourceView.cs
- HMACMD5.cs
- TypeBrowserDialog.cs
- TextDecorationCollection.cs
- NetTcpBinding.cs
- PointLightBase.cs
- ScaleTransform3D.cs
- ListViewSortEventArgs.cs
- DocumentGrid.cs
- SystemUnicastIPAddressInformation.cs
- RecognitionResult.cs
- EntityDataSourceDataSelection.cs
- Matrix3D.cs
- Part.cs
- ToolStripPanelSelectionGlyph.cs
- SHA1Managed.cs
- AnimationLayer.cs
- XmlUnspecifiedAttribute.cs
- FileInfo.cs
- TraceSection.cs
- AppSettingsReader.cs
- ListViewDeletedEventArgs.cs
- SelectionRange.cs
- TypeRestriction.cs
- XPathPatternBuilder.cs
- CustomErrorCollection.cs
- QueryRelOp.cs
- XmlDocumentFieldSchema.cs
- C14NUtil.cs
- Calendar.cs