Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / Orcas / SP / wpf / src / Core / CSharp / MS / Internal / Automation / ElementProxy.cs / 1 / ElementProxy.cs
//---------------------------------------------------------------------------- // //// Copyright (C) Microsoft Corporation. All rights reserved. // // // // Description: UIAutomation/Visual bridge // // History: // 07/15/2003 : BrendanM Ported to WCP // //--------------------------------------------------------------------------- using System; using System.Collections; using System.Reflection; using System.Runtime.InteropServices; using System.Windows; using System.Windows.Automation; using System.Windows.Automation.Provider; using System.Windows.Automation.Peers; using System.Diagnostics; using System.Windows.Input; using System.Windows.Interop; using System.Windows.Media; using System.Windows.Threading; using System.Security; using System.Security.Permissions; using MS.Internal.PresentationCore; using MS.Win32; using SR=MS.Internal.PresentationCore.SR; using SRID=MS.Internal.PresentationCore.SRID; namespace MS.Internal.Automation { // Automation Proxy for WCP elements - exposes WCP tree // and properties to Automation. // // Currently builds tree based on Visual tree; many later incorporate // parts of logical tree. // // Currently exposes just BoundingRectangle, ClassName, IsEnabled // and IsKeyboardFocused properties. internal class ElementProxy: IRawElementProviderFragmentRoot, IRawElementProviderAdviseEvents { //----------------------------------------------------- // // Constructors // //----------------------------------------------------- #region Constructors // private ctor - the Wrap() pseudo-ctor is used instead. private ElementProxy(AutomationPeer peer) { _peer = peer; } #endregion Constructors //------------------------------------------------------ // // Interface IRawElementProviderFragmentRoot // //------------ ------------------------------------------ #region Interface IRawElementProviderFragmentRoot // Implementation of the interface that exposes this // to UIAutomation. // // Interface IRawElementProviderFragmentRoot 'derives' from // IRawElementProviderSimple and IRawElementProviderFragment, // methods from those appear first below. // // Most of the interface methods on this interface need // to get onto the Visual's context before they can access it, // so use Dispatcher.Invoke to call a private method (in the // private methods section of this class) that does the real work. // IRawElementProviderSimple methods... public object GetPatternProvider ( int pattern ) { return ElementUtil.Invoke( _peer, new DispatcherOperationCallback( InContextGetPatternProvider ), pattern); } public object GetPropertyValue(int property) { return ElementUtil.Invoke(_peer, new DispatcherOperationCallback( InContextGetPropertyValue ), property); } public ProviderOptions ProviderOptions { get { return (ProviderOptions)ElementUtil.Invoke(_peer, new DispatcherOperationCallback( InContextGetProviderOptions ), null); } } public IRawElementProviderSimple HostRawElementProvider { get { IRawElementProviderSimple host = null; HostedWindowWrapper hwndWrapper = null; hwndWrapper = (HostedWindowWrapper)ElementUtil.Invoke( _peer, new DispatcherOperationCallback(InContextGetHostRawElementProvider), null); if(hwndWrapper != null) host = GetHostHelper(hwndWrapper); return host; } } ////// Critical - Calls critical HostedWindowWrapper.Handle. /// TreatAsSafe - Critical data is used internally and not explosed /// [SecurityCritical, SecurityTreatAsSafe] private IRawElementProviderSimple GetHostHelper(HostedWindowWrapper hwndWrapper) { return AutomationInteropProvider.HostProviderFromHandle(hwndWrapper.Handle); } // IRawElementProviderFragment methods... public IRawElementProviderFragment Navigate( NavigateDirection direction ) { return (IRawElementProviderFragment)ElementUtil.Invoke(_peer, new DispatcherOperationCallback(InContextNavigate), direction); } public int [ ] GetRuntimeId() { return (int []) ElementUtil.Invoke( _peer, new DispatcherOperationCallback( InContextGetRuntimeId ), null ); } public Rect BoundingRectangle { get { return (Rect)ElementUtil.Invoke(_peer, new DispatcherOperationCallback(InContextBoundingRectangle), null); } } public IRawElementProviderSimple [] GetEmbeddedFragmentRoots() { return null; } public void SetFocus() { ElementUtil.Invoke(_peer, new DispatcherOperationCallback( InContextSetFocus ), null); } public IRawElementProviderFragmentRoot FragmentRoot { get { return (IRawElementProviderFragmentRoot) ElementUtil.Invoke( _peer, new DispatcherOperationCallback( InContextFragmentRoot ), null ); } } // IRawElementProviderFragmentRoot methods.. public IRawElementProviderFragment ElementProviderFromPoint( double x, double y ) { return (IRawElementProviderFragment) ElementUtil.Invoke( _peer, new DispatcherOperationCallback( InContextElementProviderFromPoint ), new Point( x, y ) ); } public IRawElementProviderFragment GetFocus() { return (IRawElementProviderFragment) ElementUtil.Invoke( _peer, new DispatcherOperationCallback( InContextGetFocus ), null ); } // Event support... public void AdviseEventAdded(int eventID, int[] properties) { ElementUtil.Invoke( _peer, new DispatcherOperationCallback( InContextAdviseEventAdded ), new object [] { eventID, properties } ); } public void AdviseEventRemoved(int eventID, int[] properties) { ElementUtil.Invoke( _peer, new DispatcherOperationCallback( InContextAdviseEventRemoved ), new object [] { eventID, properties } ); } #endregion Interface IRawElementProviderFragmentRoot //----------------------------------------------------- // // Internal Methods // //------------------------------------------------------ #region Internal Methods // Wrap the found peer before shipping it over process boundary. private ElementProxy Wrap(AutomationPeer peer) { //_peer is well-connected, since UIA is asking us using it, //so it's ok to pass it as the referencePeer to StaticWrap return StaticWrap(peer, _peer); } // Wrap the found peer before shipping it over process boundary - static version for use outside ElementProxy. internal static ElementProxy StaticWrap(AutomationPeer peer, AutomationPeer referencePeer) { ElementProxy result = null; if (peer != null) { //referencePeer is well-connected, since UIA is asking us using it. //However we are trying to return the peer that is possibly just created on some //element in the middle of un-walked tree and we need to make sure it is fully //"connected" or initialized before we return it to UIA. //This method ensures it has the right _parent and other hookup. peer = peer.ValidateConnected(referencePeer); if (peer != null) { result = new ElementProxy(peer); } } return result; } // Needed to enable access from AutomationPeer.PeerFromProvider internal AutomationPeer Peer { get { return _peer; } } #endregion Internal Methods //------------------------------------------------------ // // Private Methods // //----------------------------------------------------- #region Private Methods // The signature of most of the folling methods is "object func( object arg )", // since that's what the Conmtext.Invoke delegate requires. // Return the element at specified coords. private object InContextElementProviderFromPoint( object arg ) { Point point = (Point)arg; AutomationPeer peer = _peer.GetPeerFromPoint(point); return Wrap(peer); } // Return proxy representing currently focused element (if any) private object InContextGetFocus( object unused ) { // AutomationPeer peer = AutomationPeer.AutomationPeerFromInputElement(Keyboard.FocusedElement); return Wrap(peer); } // redirect to AutomationPeer private object InContextGetPatternProvider(object arg) { return _peer.GetWrappedPattern((int)arg); } // Return proxy representing element in specified direction (parent/next/firstchild/etc.) private object InContextNavigate( object arg ) { NavigateDirection direction = (NavigateDirection) arg; AutomationPeer dest; switch( direction ) { case NavigateDirection.Parent: dest = _peer.GetParent(); break; case NavigateDirection.FirstChild: if (!_peer.IsInteropPeer) { dest = _peer.GetFirstChild(); } else { return _peer.GetInteropChild(); } break; case NavigateDirection.LastChild: if (!_peer.IsInteropPeer) { dest = _peer.GetLastChild(); } else { return _peer.GetInteropChild(); } break; case NavigateDirection.NextSibling: dest = _peer.GetNextSibling(); break; case NavigateDirection.PreviousSibling: dest = _peer.GetPreviousSibling(); break; default: dest = null; break; } return Wrap(dest); } // Return value for specified property; or null if not supported private object InContextGetProviderOptions( object arg ) { ProviderOptions options = ProviderOptions.ServerSideProvider; if(_peer.IsHwndHost) options |= ProviderOptions.OverrideProvider; return options; } // Return value for specified property; or null if not supported private object InContextGetPropertyValue ( object arg ) { return _peer.GetPropertyValue((int)arg); } /// Returns whether this is the Root of the WCP tree or not private object InContextGetHostRawElementProvider( object unused ) { return _peer.GetHostRawElementProvider(); } // Return unique ID for this element... private object InContextGetRuntimeId( object unused ) { return _peer.GetRuntimeId(); } // Return bounding rectangle (screen coords) for this element... private object InContextBoundingRectangle(object unused) { return _peer.GetBoundingRectangle(); } // Set focus to this element... private object InContextSetFocus( object unused ) { _peer.SetFocus(); return null; } // Return proxy representing the root of this WCP tree... private object InContextFragmentRoot( object unused ) { AutomationPeer root = _peer; while(true) { AutomationPeer parent = root.GetParent(); if(parent == null) break; root = parent; } return Wrap(root); } private object InContextAdviseEventAdded(object arg) { object [] args = (object [])arg; int eventId = (int)args[0]; EventMap.AddEvent(eventId); return null; } private object InContextAdviseEventRemoved(object arg) { object [] args = (object [])arg; int eventId = (int)args[0]; EventMap.RemoveEvent(eventId); return null; } #endregion Private Methods //------------------------------------------------------ // // Private Fields // //----------------------------------------------------- #region Private Fields private AutomationPeer _peer; #endregion Private Fields } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved. //---------------------------------------------------------------------------- // //// Copyright (C) Microsoft Corporation. All rights reserved. // // // // Description: UIAutomation/Visual bridge // // History: // 07/15/2003 : BrendanM Ported to WCP // //--------------------------------------------------------------------------- using System; using System.Collections; using System.Reflection; using System.Runtime.InteropServices; using System.Windows; using System.Windows.Automation; using System.Windows.Automation.Provider; using System.Windows.Automation.Peers; using System.Diagnostics; using System.Windows.Input; using System.Windows.Interop; using System.Windows.Media; using System.Windows.Threading; using System.Security; using System.Security.Permissions; using MS.Internal.PresentationCore; using MS.Win32; using SR=MS.Internal.PresentationCore.SR; using SRID=MS.Internal.PresentationCore.SRID; namespace MS.Internal.Automation { // Automation Proxy for WCP elements - exposes WCP tree // and properties to Automation. // // Currently builds tree based on Visual tree; many later incorporate // parts of logical tree. // // Currently exposes just BoundingRectangle, ClassName, IsEnabled // and IsKeyboardFocused properties. internal class ElementProxy: IRawElementProviderFragmentRoot, IRawElementProviderAdviseEvents { //----------------------------------------------------- // // Constructors // //----------------------------------------------------- #region Constructors // private ctor - the Wrap() pseudo-ctor is used instead. private ElementProxy(AutomationPeer peer) { _peer = peer; } #endregion Constructors //------------------------------------------------------ // // Interface IRawElementProviderFragmentRoot // //------------ ------------------------------------------ #region Interface IRawElementProviderFragmentRoot // Implementation of the interface that exposes this // to UIAutomation. // // Interface IRawElementProviderFragmentRoot 'derives' from // IRawElementProviderSimple and IRawElementProviderFragment, // methods from those appear first below. // // Most of the interface methods on this interface need // to get onto the Visual's context before they can access it, // so use Dispatcher.Invoke to call a private method (in the // private methods section of this class) that does the real work. // IRawElementProviderSimple methods... public object GetPatternProvider ( int pattern ) { return ElementUtil.Invoke( _peer, new DispatcherOperationCallback( InContextGetPatternProvider ), pattern); } public object GetPropertyValue(int property) { return ElementUtil.Invoke(_peer, new DispatcherOperationCallback( InContextGetPropertyValue ), property); } public ProviderOptions ProviderOptions { get { return (ProviderOptions)ElementUtil.Invoke(_peer, new DispatcherOperationCallback( InContextGetProviderOptions ), null); } } public IRawElementProviderSimple HostRawElementProvider { get { IRawElementProviderSimple host = null; HostedWindowWrapper hwndWrapper = null; hwndWrapper = (HostedWindowWrapper)ElementUtil.Invoke( _peer, new DispatcherOperationCallback(InContextGetHostRawElementProvider), null); if(hwndWrapper != null) host = GetHostHelper(hwndWrapper); return host; } } ////// Critical - Calls critical HostedWindowWrapper.Handle. /// TreatAsSafe - Critical data is used internally and not explosed /// [SecurityCritical, SecurityTreatAsSafe] private IRawElementProviderSimple GetHostHelper(HostedWindowWrapper hwndWrapper) { return AutomationInteropProvider.HostProviderFromHandle(hwndWrapper.Handle); } // IRawElementProviderFragment methods... public IRawElementProviderFragment Navigate( NavigateDirection direction ) { return (IRawElementProviderFragment)ElementUtil.Invoke(_peer, new DispatcherOperationCallback(InContextNavigate), direction); } public int [ ] GetRuntimeId() { return (int []) ElementUtil.Invoke( _peer, new DispatcherOperationCallback( InContextGetRuntimeId ), null ); } public Rect BoundingRectangle { get { return (Rect)ElementUtil.Invoke(_peer, new DispatcherOperationCallback(InContextBoundingRectangle), null); } } public IRawElementProviderSimple [] GetEmbeddedFragmentRoots() { return null; } public void SetFocus() { ElementUtil.Invoke(_peer, new DispatcherOperationCallback( InContextSetFocus ), null); } public IRawElementProviderFragmentRoot FragmentRoot { get { return (IRawElementProviderFragmentRoot) ElementUtil.Invoke( _peer, new DispatcherOperationCallback( InContextFragmentRoot ), null ); } } // IRawElementProviderFragmentRoot methods.. public IRawElementProviderFragment ElementProviderFromPoint( double x, double y ) { return (IRawElementProviderFragment) ElementUtil.Invoke( _peer, new DispatcherOperationCallback( InContextElementProviderFromPoint ), new Point( x, y ) ); } public IRawElementProviderFragment GetFocus() { return (IRawElementProviderFragment) ElementUtil.Invoke( _peer, new DispatcherOperationCallback( InContextGetFocus ), null ); } // Event support... public void AdviseEventAdded(int eventID, int[] properties) { ElementUtil.Invoke( _peer, new DispatcherOperationCallback( InContextAdviseEventAdded ), new object [] { eventID, properties } ); } public void AdviseEventRemoved(int eventID, int[] properties) { ElementUtil.Invoke( _peer, new DispatcherOperationCallback( InContextAdviseEventRemoved ), new object [] { eventID, properties } ); } #endregion Interface IRawElementProviderFragmentRoot //----------------------------------------------------- // // Internal Methods // //------------------------------------------------------ #region Internal Methods // Wrap the found peer before shipping it over process boundary. private ElementProxy Wrap(AutomationPeer peer) { //_peer is well-connected, since UIA is asking us using it, //so it's ok to pass it as the referencePeer to StaticWrap return StaticWrap(peer, _peer); } // Wrap the found peer before shipping it over process boundary - static version for use outside ElementProxy. internal static ElementProxy StaticWrap(AutomationPeer peer, AutomationPeer referencePeer) { ElementProxy result = null; if (peer != null) { //referencePeer is well-connected, since UIA is asking us using it. //However we are trying to return the peer that is possibly just created on some //element in the middle of un-walked tree and we need to make sure it is fully //"connected" or initialized before we return it to UIA. //This method ensures it has the right _parent and other hookup. peer = peer.ValidateConnected(referencePeer); if (peer != null) { result = new ElementProxy(peer); } } return result; } // Needed to enable access from AutomationPeer.PeerFromProvider internal AutomationPeer Peer { get { return _peer; } } #endregion Internal Methods //------------------------------------------------------ // // Private Methods // //----------------------------------------------------- #region Private Methods // The signature of most of the folling methods is "object func( object arg )", // since that's what the Conmtext.Invoke delegate requires. // Return the element at specified coords. private object InContextElementProviderFromPoint( object arg ) { Point point = (Point)arg; AutomationPeer peer = _peer.GetPeerFromPoint(point); return Wrap(peer); } // Return proxy representing currently focused element (if any) private object InContextGetFocus( object unused ) { // AutomationPeer peer = AutomationPeer.AutomationPeerFromInputElement(Keyboard.FocusedElement); return Wrap(peer); } // redirect to AutomationPeer private object InContextGetPatternProvider(object arg) { return _peer.GetWrappedPattern((int)arg); } // Return proxy representing element in specified direction (parent/next/firstchild/etc.) private object InContextNavigate( object arg ) { NavigateDirection direction = (NavigateDirection) arg; AutomationPeer dest; switch( direction ) { case NavigateDirection.Parent: dest = _peer.GetParent(); break; case NavigateDirection.FirstChild: if (!_peer.IsInteropPeer) { dest = _peer.GetFirstChild(); } else { return _peer.GetInteropChild(); } break; case NavigateDirection.LastChild: if (!_peer.IsInteropPeer) { dest = _peer.GetLastChild(); } else { return _peer.GetInteropChild(); } break; case NavigateDirection.NextSibling: dest = _peer.GetNextSibling(); break; case NavigateDirection.PreviousSibling: dest = _peer.GetPreviousSibling(); break; default: dest = null; break; } return Wrap(dest); } // Return value for specified property; or null if not supported private object InContextGetProviderOptions( object arg ) { ProviderOptions options = ProviderOptions.ServerSideProvider; if(_peer.IsHwndHost) options |= ProviderOptions.OverrideProvider; return options; } // Return value for specified property; or null if not supported private object InContextGetPropertyValue ( object arg ) { return _peer.GetPropertyValue((int)arg); } /// Returns whether this is the Root of the WCP tree or not private object InContextGetHostRawElementProvider( object unused ) { return _peer.GetHostRawElementProvider(); } // Return unique ID for this element... private object InContextGetRuntimeId( object unused ) { return _peer.GetRuntimeId(); } // Return bounding rectangle (screen coords) for this element... private object InContextBoundingRectangle(object unused) { return _peer.GetBoundingRectangle(); } // Set focus to this element... private object InContextSetFocus( object unused ) { _peer.SetFocus(); return null; } // Return proxy representing the root of this WCP tree... private object InContextFragmentRoot( object unused ) { AutomationPeer root = _peer; while(true) { AutomationPeer parent = root.GetParent(); if(parent == null) break; root = parent; } return Wrap(root); } private object InContextAdviseEventAdded(object arg) { object [] args = (object [])arg; int eventId = (int)args[0]; EventMap.AddEvent(eventId); return null; } private object InContextAdviseEventRemoved(object arg) { object [] args = (object [])arg; int eventId = (int)args[0]; EventMap.RemoveEvent(eventId); return null; } #endregion Private Methods //------------------------------------------------------ // // Private Fields // //----------------------------------------------------- #region Private Fields private AutomationPeer _peer; #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
- WebPartDisplayModeCollection.cs
- NoneExcludedImageIndexConverter.cs
- ProcessActivityTreeOptions.cs
- FileNameEditor.cs
- SubMenuStyleCollection.cs
- ZipIOZip64EndOfCentralDirectoryBlock.cs
- AlternateView.cs
- Buffer.cs
- NavigationWindowAutomationPeer.cs
- DataGridColumn.cs
- CommonDialog.cs
- DataGridViewRowCollection.cs
- InheritanceContextHelper.cs
- TextDecorationCollectionConverter.cs
- InfoCardRSAPKCS1SignatureDeformatter.cs
- CompileXomlTask.cs
- GridViewHeaderRowPresenterAutomationPeer.cs
- UniqueIdentifierService.cs
- TypeUsageBuilder.cs
- SlotInfo.cs
- StatusBarDesigner.cs
- Tokenizer.cs
- AccessViolationException.cs
- RadioButton.cs
- AudienceUriMode.cs
- FileUpload.cs
- OpenFileDialog.cs
- HtmlInputButton.cs
- Utility.cs
- Range.cs
- CardSpaceException.cs
- RsaSecurityTokenAuthenticator.cs
- TextBreakpoint.cs
- ProtocolException.cs
- VisualProxy.cs
- WebPartTransformer.cs
- MarkupExtensionParser.cs
- ObjectStateEntry.cs
- PropertyGridCommands.cs
- SQLDateTimeStorage.cs
- DnsCache.cs
- Setter.cs
- ShellProvider.cs
- DocumentSchemaValidator.cs
- ApplicationSecurityManager.cs
- TextServicesCompartmentEventSink.cs
- TriggerBase.cs
- FlagsAttribute.cs
- WebBrowserBase.cs
- SizeLimitedCache.cs
- Msec.cs
- ConfigurationErrorsException.cs
- TableLayoutPanelCellPosition.cs
- ISFTagAndGuidCache.cs
- selecteditemcollection.cs
- HandlerFactoryWrapper.cs
- ContentFilePart.cs
- ActiveXHost.cs
- PolygonHotSpot.cs
- Transactions.cs
- SyndicationSerializer.cs
- GeneralTransformCollection.cs
- DataContractSet.cs
- SafeTimerHandle.cs
- RoleManagerSection.cs
- CngUIPolicy.cs
- Annotation.cs
- DataBoundControlHelper.cs
- CfgParser.cs
- ColorAnimationUsingKeyFrames.cs
- WindowsFormsHostPropertyMap.cs
- UniqueIdentifierService.cs
- SystemIPv4InterfaceProperties.cs
- CriticalFinalizerObject.cs
- ArrayMergeHelper.cs
- LogRestartAreaEnumerator.cs
- DataRelationCollection.cs
- OdbcCommandBuilder.cs
- ListItemsCollectionEditor.cs
- WsdlInspector.cs
- UrlMappingsModule.cs
- FixedSchema.cs
- SafeRegistryHandle.cs
- UMPAttributes.cs
- SqlCommandBuilder.cs
- ScriptHandlerFactory.cs
- Empty.cs
- webeventbuffer.cs
- ByteAnimationUsingKeyFrames.cs
- TextSegment.cs
- ReadOnlyHierarchicalDataSource.cs
- CodeNamespaceImport.cs
- DbConvert.cs
- IPipelineRuntime.cs
- Timer.cs
- VisualCollection.cs
- DetailsViewUpdatedEventArgs.cs
- DataBindingsDialog.cs
- SQLBytesStorage.cs
- BuildDependencySet.cs