Code:
/ DotNET / DotNET / 8.0 / untmp / WIN_WINDOWS / lh_tools_devdiv_wpf / Windows / wcp / Core / MS / Internal / Shaping / GlyphShapingProperties.cs / 1 / GlyphShapingProperties.cs
//------------------------------------------------------------------------ // // Microsoft Windows Client Platform // Copyright (C) Microsoft Corporation, 2004 // // File: GlyphShapingProperties.cs // // Contents: Definition of glyph properties // // Created: 1-2-2004 [....] ([....]) // // 10-27-2004 [....] Move to System.Windows.Media.TextFormatting // namespace // // 1-20-2005 [....] Move to MS.Internal.Shaping //----------------------------------------------------------------------- using System; namespace MS.Internal.Shaping { ////// Properties indicating glyph characteristics /// internal struct GlyphShapingProperties { ////// Construct a glyph properties value from multiple values from shaping /// /// shaping engine glyph flags /// bits reserved for shaping engine use internal GlyphShapingProperties( ushort glyphFlags, ushort engineReserved ) { _value = glyphFlags; _value |= ((uint)engineReserved) << 16; } ////// Get or Set bits reserved for shaping engine use /// internal ushort GlyphFlags { get { return (ushort)(_value & GlyphFlagsMask); } set { _value = (_value & ~EngineReservedValueMask) | (uint)value; } } ////// Get or Set bits reserved for shaping engine use /// internal ushort EngineReserved { get { return (ushort)(_value >> 16); } set { _value = (_value & ~EngineReservedValueMask) | (uint)(value << 16); } } ////// Explicitly convert this value type to integer /// public static explicit operator int(GlyphShapingProperties props) { return (int)props._value; } ////// Compares two GlyphShapingProperties for equality. /// ///Returns true if the arguments have identical properties, false if not. public static bool operator ==( GlyphShapingProperties left, GlyphShapingProperties right) { return left._value == right._value; } ////// Compares two GlyphShapingProperties for inequality. /// ///Returns true if the arguments are not equal, false if they are equal. public static bool operator !=( GlyphShapingProperties left, GlyphShapingProperties right) { return !(left == right); } ////// Compares the specified object with this. /// ///Returns true if the specified object is a GlyphShapingProperties with the same /// value as this object. public override bool Equals( object o) { if (o != null && o is GlyphShapingProperties) { return (GlyphShapingProperties)o == this; } else { return false; } } ////// Returns a hash code based on the property flags. /// public override int GetHashCode() { return (int)_value; } private uint _value; private const uint GlyphFlagsMask = 0x0000FFFF; private const uint EngineReservedValueMask = 0xFFFF0000; } } // 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
- HandoffBehavior.cs
- EngineSiteSapi.cs
- ArrangedElementCollection.cs
- AssemblyBuilder.cs
- WorkflowPersistenceContext.cs
- XmlDataDocument.cs
- DataRowView.cs
- LocalIdKeyIdentifierClause.cs
- FormViewInsertEventArgs.cs
- StartFileNameEditor.cs
- ScriptReferenceEventArgs.cs
- MbpInfo.cs
- CultureSpecificCharacterBufferRange.cs
- Lasso.cs
- PersonalizationEntry.cs
- ModifierKeysConverter.cs
- FileCodeGroup.cs
- ProtocolState.cs
- MarkerProperties.cs
- SqlDataSourceQueryEditor.cs
- CachedBitmap.cs
- CalendarTable.cs
- TreeNodeBinding.cs
- InputReferenceExpression.cs
- InternalSafeNativeMethods.cs
- FollowerQueueCreator.cs
- InternalConfigConfigurationFactory.cs
- ToolstripProfessionalRenderer.cs
- ListViewItemSelectionChangedEvent.cs
- SiteOfOriginPart.cs
- Context.cs
- Timeline.cs
- ArgumentDirectionHelper.cs
- GridViewRowEventArgs.cs
- RegistryExceptionHelper.cs
- TextFragmentEngine.cs
- ExpandedWrapper.cs
- _DigestClient.cs
- UriTemplateLiteralPathSegment.cs
- CTreeGenerator.cs
- ConvertersCollection.cs
- XmlWrappingWriter.cs
- SimpleRecyclingCache.cs
- SecurityManager.cs
- ValueType.cs
- ListItemCollection.cs
- ProviderConnectionPointCollection.cs
- ListenerAdapterBase.cs
- CommandLineParser.cs
- DataGridViewRowConverter.cs
- _ConnectStream.cs
- RuleInfoComparer.cs
- SMSvcHost.cs
- SpellCheck.cs
- WindowManager.cs
- DataGridViewRowHeaderCell.cs
- listviewsubitemcollectioneditor.cs
- InArgument.cs
- PointLight.cs
- QilDataSource.cs
- XmlILAnnotation.cs
- QilBinary.cs
- ContextQuery.cs
- CodeTypeDelegate.cs
- CheckedListBox.cs
- LocatorManager.cs
- SoapIgnoreAttribute.cs
- FaultFormatter.cs
- StandardCommandToolStripMenuItem.cs
- DataGridState.cs
- GridViewColumnHeader.cs
- DataGridViewRowsAddedEventArgs.cs
- QfeChecker.cs
- XmlSchemaComplexContent.cs
- StateMachineHistory.cs
- CqlLexerHelpers.cs
- EventBuilder.cs
- DataError.cs
- DesignerSerializationVisibilityAttribute.cs
- HttpPostedFileWrapper.cs
- XmlSchemaSimpleContentRestriction.cs
- AnchoredBlock.cs
- RubberbandSelector.cs
- RowsCopiedEventArgs.cs
- WorkflowMarkupSerializationException.cs
- UrlMappingCollection.cs
- GrammarBuilderRuleRef.cs
- StreamSecurityUpgradeAcceptor.cs
- SqlConnectionManager.cs
- Configuration.cs
- XMLDiffLoader.cs
- Int32RectValueSerializer.cs
- IdentityHolder.cs
- WSHttpBindingElement.cs
- XsltLoader.cs
- DesignerOptionService.cs
- SessionParameter.cs
- XmlNamespaceDeclarationsAttribute.cs
- Crc32.cs
- DiagnosticStrings.cs