Code:
/ DotNET / DotNET / 8.0 / untmp / WIN_WINDOWS / lh_tools_devdiv_wpf / Windows / wcp / Framework / System / Windows / Documents / TextServicesProperty.cs / 1 / TextServicesProperty.cs
//---------------------------------------------------------------------------- // //// Copyright (C) Microsoft Corporation. All rights reserved. // // // // Description: TextServicesProperty implementation. // // History: // 08/01/2003 : [....] - Ported from dotnet tree. // //--------------------------------------------------------------------------- using System.Runtime.InteropServices; using System.Windows.Threading; using System.Security; using System.Security.Permissions; using System.Collections; using System.Diagnostics; using System.Windows.Media; using System.Windows.Input; using System.Windows.Documents; using MS.Win32; using System; namespace System.Windows.Documents { //----------------------------------------------------- // // TextServicesProperty class // //----------------------------------------------------- ////// This is an internal. /// This is a holder for Cicero properties. /// - Reading String. /// - Input Language. /// - Display Attribute. /// /// internal class TextServicesProperty { //------------------------------------------------------ // // Constructors // //----------------------------------------------------- #region Constructors internal TextServicesProperty(TextStore textstore) { _textstore = textstore; } #endregion Constructors //------------------------------------------------------ // // Internal Methods // //------------------------------------------------------ #region Internal Methods /// /// Calback function for TextEditSink /// we track all property change here. /// ////// Critical - commits changes to edit buffer, might alow input spoofing /// [SecurityCritical] internal void OnEndEdit( UnsafeNativeMethods.ITfContext context, int ecReadOnly, UnsafeNativeMethods.ITfEditRecord editRecord) { if (_propertyRanges == null) { _propertyRanges = new TextServicesDisplayAttributePropertyRanges(_textstore); } _propertyRanges.OnEndEdit(context, ecReadOnly, editRecord); } // Callback from TextStore.OnLayoutUpdated. // Updates composition display attribute adorner on-screen location. internal void OnLayoutUpdated() { TextServicesDisplayAttributePropertyRanges displayAttributes = _propertyRanges as TextServicesDisplayAttributePropertyRanges; if (displayAttributes != null) { displayAttributes.OnLayoutUpdated(); } } #endregion Internal Methods //----------------------------------------------------- // // Private Fields // //------------------------------------------------------ #region Private Fields private TextServicesPropertyRanges _propertyRanges; private readonly TextStore _textstore; #endregion Private Fields } } // 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
- TextViewElement.cs
- WebBrowserPermission.cs
- TextBox.cs
- _ConnectStream.cs
- BlockExpression.cs
- BindingValueChangedEventArgs.cs
- ColumnMap.cs
- SqlInternalConnectionTds.cs
- AsymmetricKeyExchangeFormatter.cs
- DotAtomReader.cs
- ContextActivityUtils.cs
- TextElementEditingBehaviorAttribute.cs
- SourceChangedEventArgs.cs
- FontSizeConverter.cs
- VariableReference.cs
- TransformerInfo.cs
- UriTemplateDispatchFormatter.cs
- GridViewSelectEventArgs.cs
- TraceContextRecord.cs
- IUnknownConstantAttribute.cs
- ListBoxAutomationPeer.cs
- GatewayDefinition.cs
- HWStack.cs
- GeneralTransform2DTo3DTo2D.cs
- SqlConnectionStringBuilder.cs
- AspCompat.cs
- Comparer.cs
- Site.cs
- RegexGroupCollection.cs
- DataGridViewBindingCompleteEventArgs.cs
- StorageEntitySetMapping.cs
- controlskin.cs
- MsmqIntegrationMessageProperty.cs
- HtmlLink.cs
- ConnectionsZone.cs
- DataControlImageButton.cs
- MimeParameterWriter.cs
- TextSpan.cs
- safelinkcollection.cs
- WCFBuildProvider.cs
- Regex.cs
- XmlDataSourceDesigner.cs
- Matrix.cs
- ExpressionVisitor.cs
- AssemblySettingAttributes.cs
- WinCategoryAttribute.cs
- XmlUtilWriter.cs
- LinearGradientBrush.cs
- TraceSection.cs
- HttpCapabilitiesBase.cs
- InteropExecutor.cs
- DecimalConstantAttribute.cs
- CFStream.cs
- SpeechDetectedEventArgs.cs
- _Win32.cs
- DataGridViewAutoSizeModeEventArgs.cs
- XmlDataCollection.cs
- Panel.cs
- ClientRoleProvider.cs
- StorageFunctionMapping.cs
- DropTarget.cs
- LazyTextWriterCreator.cs
- TraceLog.cs
- DataStreamFromComStream.cs
- ScheduleChanges.cs
- SerializationObjectManager.cs
- Item.cs
- WSSecureConversation.cs
- BoundPropertyEntry.cs
- ProgressBar.cs
- HtmlInputCheckBox.cs
- RoleGroupCollection.cs
- PseudoWebRequest.cs
- ToggleButtonAutomationPeer.cs
- MeasureItemEvent.cs
- SplitterEvent.cs
- QueryConverter.cs
- DateBoldEvent.cs
- TextCompositionEventArgs.cs
- DependentList.cs
- FrameworkElement.cs
- LinkedList.cs
- ViewEvent.cs
- QilLiteral.cs
- TraceHwndHost.cs
- DeflateStream.cs
- DataConnectionHelper.cs
- Variant.cs
- SqlWebEventProvider.cs
- OutKeywords.cs
- StrokeCollectionConverter.cs
- HttpWebRequest.cs
- HttpCookiesSection.cs
- WindowsFont.cs
- ScriptingScriptResourceHandlerSection.cs
- HttpModuleAction.cs
- RuleRef.cs
- TextContainer.cs
- tibetanshape.cs
- Expr.cs