Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / Orcas / QFE / wpf / src / Core / CSharp / System / Windows / Media / GeometryGroup.cs / 1 / GeometryGroup.cs
//----------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// Description: Implementation of GeometryGroup
//
// History:
// 2004/11/11-Michka
// Created it
//
//---------------------------------------------------------------------------
using System;
using MS.Internal;
using System.ComponentModel;
using System.ComponentModel.Design.Serialization;
using System.Diagnostics;
using System.Reflection;
using System.Collections;
using System.Text;
using System.Globalization;
using System.Windows.Media;
using System.Windows;
using System.Windows.Media.Composition;
using System.Text.RegularExpressions;
using System.Windows.Media.Animation;
using System.Windows.Markup;
using System.Runtime.InteropServices;
using SR=MS.Internal.PresentationCore.SR;
using SRID=MS.Internal.PresentationCore.SRID;
namespace System.Windows.Media
{
#region GeometryGroup
///
/// GeometryGroup
///
[ContentProperty("Children")]
public sealed partial class GeometryGroup : Geometry
{
#region Constructors
///
/// Default constructor
///
public GeometryGroup()
{
}
#endregion
#region Overrides
///
/// GetPathGeometryData - returns a struct which contains this Geometry represented
/// as a path geometry's serialized format.
///
internal override PathGeometryData GetPathGeometryData()
{
PathGeometry pathGeometry = GetAsPathGeometry();
return pathGeometry.GetPathGeometryData();
}
internal override PathGeometry GetAsPathGeometry()
{
PathGeometry pg = new PathGeometry();
pg.AddGeometry(this);
pg.FillRule = FillRule;
Debug.Assert(pg.CanFreeze);
return pg;
}
#endregion
#region GetPathFigureCollection
internal override PathFigureCollection GetTransformedFigureCollection(Transform transform)
{
// Combine the transform argument with the internal transform
Transform combined = new MatrixTransform(GetCombinedMatrix(transform));
PathFigureCollection result = new PathFigureCollection();
GeometryCollection children = Children;
if (children != null)
{
for (int i = 0; i < children.Count; i++)
{
PathFigureCollection pathFigures = children.Internal_GetItem(i).GetTransformedFigureCollection(combined);
if (pathFigures != null)
{
int count = pathFigures.Count;
for (int j = 0; j < count; ++j)
{
result.Add(pathFigures[j]);
}
}
}
}
return result;
}
#endregion
#region IsEmpty
///
/// Returns true if this geometry is empty
///
public override bool IsEmpty()
{
GeometryCollection children = Children;
if (children == null)
{
return true;
}
for (int i=0; i
/// Returns true if this geometry may have curved segments
///
public override bool MayHaveCurves()
{
GeometryCollection children = Children;
if (children == null)
{
return false;
}
for (int i = 0; i < children.Count; i++)
{
if (((Geometry)children[i]).MayHaveCurves())
{
return true;
}
}
return false;
}
}
#endregion
}
// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
//----------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// Description: Implementation of GeometryGroup
//
// History:
// 2004/11/11-Michka
// Created it
//
//---------------------------------------------------------------------------
using System;
using MS.Internal;
using System.ComponentModel;
using System.ComponentModel.Design.Serialization;
using System.Diagnostics;
using System.Reflection;
using System.Collections;
using System.Text;
using System.Globalization;
using System.Windows.Media;
using System.Windows;
using System.Windows.Media.Composition;
using System.Text.RegularExpressions;
using System.Windows.Media.Animation;
using System.Windows.Markup;
using System.Runtime.InteropServices;
using SR=MS.Internal.PresentationCore.SR;
using SRID=MS.Internal.PresentationCore.SRID;
namespace System.Windows.Media
{
#region GeometryGroup
///
/// GeometryGroup
///
[ContentProperty("Children")]
public sealed partial class GeometryGroup : Geometry
{
#region Constructors
///
/// Default constructor
///
public GeometryGroup()
{
}
#endregion
#region Overrides
///
/// GetPathGeometryData - returns a struct which contains this Geometry represented
/// as a path geometry's serialized format.
///
internal override PathGeometryData GetPathGeometryData()
{
PathGeometry pathGeometry = GetAsPathGeometry();
return pathGeometry.GetPathGeometryData();
}
internal override PathGeometry GetAsPathGeometry()
{
PathGeometry pg = new PathGeometry();
pg.AddGeometry(this);
pg.FillRule = FillRule;
Debug.Assert(pg.CanFreeze);
return pg;
}
#endregion
#region GetPathFigureCollection
internal override PathFigureCollection GetTransformedFigureCollection(Transform transform)
{
// Combine the transform argument with the internal transform
Transform combined = new MatrixTransform(GetCombinedMatrix(transform));
PathFigureCollection result = new PathFigureCollection();
GeometryCollection children = Children;
if (children != null)
{
for (int i = 0; i < children.Count; i++)
{
PathFigureCollection pathFigures = children.Internal_GetItem(i).GetTransformedFigureCollection(combined);
if (pathFigures != null)
{
int count = pathFigures.Count;
for (int j = 0; j < count; ++j)
{
result.Add(pathFigures[j]);
}
}
}
}
return result;
}
#endregion
#region IsEmpty
///
/// Returns true if this geometry is empty
///
public override bool IsEmpty()
{
GeometryCollection children = Children;
if (children == null)
{
return true;
}
for (int i=0; i
/// Returns true if this geometry may have curved segments
///
public override bool MayHaveCurves()
{
GeometryCollection children = Children;
if (children == null)
{
return false;
}
for (int i = 0; i < children.Count; i++)
{
if (((Geometry)children[i]).MayHaveCurves())
{
return true;
}
}
return false;
}
}
#endregion
}
// 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
- SamlDoNotCacheCondition.cs
- Config.cs
- AuthenticatingEventArgs.cs
- LineGeometry.cs
- XmlDataDocument.cs
- TextTrailingWordEllipsis.cs
- TiffBitmapDecoder.cs
- ConstraintEnumerator.cs
- ScriptMethodAttribute.cs
- DbBuffer.cs
- CalendarModeChangedEventArgs.cs
- TransformBlockRequest.cs
- CompilerCollection.cs
- ForEachAction.cs
- ExtensibleClassFactory.cs
- XmlSchemaSimpleContentRestriction.cs
- ResourceManagerWrapper.cs
- CodeSubDirectoriesCollection.cs
- DiscardableAttribute.cs
- KnownTypesHelper.cs
- UniformGrid.cs
- Encoding.cs
- SoapMessage.cs
- GenericArgumentsUpdater.cs
- XdrBuilder.cs
- FrameworkReadOnlyPropertyMetadata.cs
- TypeElement.cs
- Int32AnimationUsingKeyFrames.cs
- ManualResetEvent.cs
- DataGridColumn.cs
- QuaternionAnimation.cs
- XpsException.cs
- MenuCommand.cs
- CellConstantDomain.cs
- EncoderReplacementFallback.cs
- StandardToolWindows.cs
- cryptoapiTransform.cs
- RSAPKCS1KeyExchangeDeformatter.cs
- ExpressionPrefixAttribute.cs
- BindingWorker.cs
- SettingsPropertyCollection.cs
- HoistedLocals.cs
- FontInfo.cs
- HTMLTagNameToTypeMapper.cs
- StorageEntityContainerMapping.cs
- DriveNotFoundException.cs
- SettingsPropertyCollection.cs
- HttpHeaderCollection.cs
- BufferModeSettings.cs
- figurelengthconverter.cs
- NonVisualControlAttribute.cs
- DisplayMemberTemplateSelector.cs
- SiteMapHierarchicalDataSourceView.cs
- PageSetupDialog.cs
- StringFreezingAttribute.cs
- Win32KeyboardDevice.cs
- DataGridItemCollection.cs
- _ListenerAsyncResult.cs
- ConfigurationSettings.cs
- AspNetSynchronizationContext.cs
- PerspectiveCamera.cs
- MarginsConverter.cs
- DetailsViewRow.cs
- XmlSerializerAssemblyAttribute.cs
- IList.cs
- Context.cs
- DataGridViewSelectedRowCollection.cs
- BrowserCapabilitiesFactoryBase.cs
- ComponentResourceKeyConverter.cs
- ISessionStateStore.cs
- EntitySqlQueryState.cs
- OperationInfoBase.cs
- AttachedPropertyInfo.cs
- PrimitiveOperationFormatter.cs
- Span.cs
- TypedDataSetSchemaImporterExtensionFx35.cs
- SoapExtensionImporter.cs
- TiffBitmapDecoder.cs
- RectangleHotSpot.cs
- Maps.cs
- InputLanguageCollection.cs
- SqlMultiplexer.cs
- SqlClientWrapperSmiStreamChars.cs
- LinearQuaternionKeyFrame.cs
- XmlWhitespace.cs
- XmlArrayItemAttributes.cs
- SimpleRecyclingCache.cs
- IBuiltInEvidence.cs
- DataProtectionSecurityStateEncoder.cs
- SettingsPropertyWrongTypeException.cs
- DeferredSelectedIndexReference.cs
- PingOptions.cs
- DataServiceEntityAttribute.cs
- Transactions.cs
- BamlRecordHelper.cs
- MessageDescription.cs
- __Filters.cs
- XmlAggregates.cs
- ITreeGenerator.cs
- DataGridBeginningEditEventArgs.cs