Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / Orcas / SP / wpf / src / UIAutomation / UIAutomationClient / MS / Internal / Automation / WindowShowOrOpenTracker.cs / 1 / WindowShowOrOpenTracker.cs
//---------------------------------------------------------------------------- // //// Copyright (C) Microsoft Corporation. All rights reserved. // // // // Description: Class used to track new UI appearing and make sure any events // are propogated to that new UI. // // History: // 06/17/2003 : BrendanM Ported to WCP // 11/20/2003 : Micw renamed NewUITracker.cs to WindowShowOrOpenTracker.cs // //--------------------------------------------------------------------------- using System; using System.Globalization; using System.Text; using System.Windows.Automation; using System.Diagnostics; using MS.Win32; namespace MS.Internal.Automation { // WindowShowOrOpenTracker - Class used to track new UI appearing and make sure any events // are propogated to that new UI. internal delegate void WindowShowOrOpenHandler( IntPtr hwnd, AutomationElement rawEl ); // Class used to track new UI appearing and make sure any events // are propogated to that new UI. internal class WindowShowOrOpenTracker : WinEventWrap { //----------------------------------------------------- // // Constructors // //----------------------------------------------------- #region Constructors internal WindowShowOrOpenTracker(WindowShowOrOpenHandler newUIHandler) : base(new int[] {NativeMethods.EventObjectUIFragmentCreate, NativeMethods.EVENT_OBJECT_CREATE, NativeMethods.EVENT_OBJECT_SHOW}) { AddCallback(newUIHandler); } #endregion Constructors //------------------------------------------------------ // // Internal Methods // //----------------------------------------------------- #region Internal Methods internal override void WinEventProc(int eventId, IntPtr hwnd, int idObject, int idChild, uint eventTime) { // ignore any event not pertaining directly to the window if (idObject != UnsafeNativeMethods.OBJID_WINDOW) return; // Ignore if this is a bogus hwnd (shouldn't happen) if (hwnd == IntPtr.Zero) return; NativeMethods.HWND nativeHwnd = NativeMethods.HWND.Cast( hwnd ); // Ignore windows that have been destroyed if (! SafeNativeMethods.IsWindow( nativeHwnd )) return; // Ignore invisible windows (IsWindowVisible takes the hwnd ancestor // visibility into account) if (! SafeNativeMethods.IsWindowVisible( nativeHwnd )) return; if (eventId == NativeMethods.EVENT_OBJECT_CREATE) { // Ignore WCP hwnd creates; we get eventId EventObjectUIFragmentCreate for those // string str = ProxyManager.GetClassName(nativeHwnd); if (String.Compare(str, 0, _wcpClassName, 0, _wcpClassName.Length, StringComparison.OrdinalIgnoreCase) == 0) return; } AutomationElement rawEl = AutomationElement.FromHandle( hwnd ); // Do the notify. Note that this handler is used to notify client-side UIAutomation providers of windows // being destroyed or hidden. The delegate called here is itself protected by a lock. This delegate may // call out to proxies but also calls ClientEventManager.RaiseEventInThisClientOnly which properly // queues the actual callout to client code. object [] handlers = GetHandlers(); Debug.Assert(handlers.Length <= 1, "handlers.Length"); if (handlers.Length > 0) ((WindowShowOrOpenHandler)handlers[0])( hwnd, rawEl ); } #endregion Internal Methods //------------------------------------------------------ // // Private Fields // //------------------------------------------------------ #region Private Fields static readonly string _wcpClassName = "HwndWrapper"; #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: Class used to track new UI appearing and make sure any events // are propogated to that new UI. // // History: // 06/17/2003 : BrendanM Ported to WCP // 11/20/2003 : Micw renamed NewUITracker.cs to WindowShowOrOpenTracker.cs // //--------------------------------------------------------------------------- using System; using System.Globalization; using System.Text; using System.Windows.Automation; using System.Diagnostics; using MS.Win32; namespace MS.Internal.Automation { // WindowShowOrOpenTracker - Class used to track new UI appearing and make sure any events // are propogated to that new UI. internal delegate void WindowShowOrOpenHandler( IntPtr hwnd, AutomationElement rawEl ); // Class used to track new UI appearing and make sure any events // are propogated to that new UI. internal class WindowShowOrOpenTracker : WinEventWrap { //----------------------------------------------------- // // Constructors // //----------------------------------------------------- #region Constructors internal WindowShowOrOpenTracker(WindowShowOrOpenHandler newUIHandler) : base(new int[] {NativeMethods.EventObjectUIFragmentCreate, NativeMethods.EVENT_OBJECT_CREATE, NativeMethods.EVENT_OBJECT_SHOW}) { AddCallback(newUIHandler); } #endregion Constructors //------------------------------------------------------ // // Internal Methods // //----------------------------------------------------- #region Internal Methods internal override void WinEventProc(int eventId, IntPtr hwnd, int idObject, int idChild, uint eventTime) { // ignore any event not pertaining directly to the window if (idObject != UnsafeNativeMethods.OBJID_WINDOW) return; // Ignore if this is a bogus hwnd (shouldn't happen) if (hwnd == IntPtr.Zero) return; NativeMethods.HWND nativeHwnd = NativeMethods.HWND.Cast( hwnd ); // Ignore windows that have been destroyed if (! SafeNativeMethods.IsWindow( nativeHwnd )) return; // Ignore invisible windows (IsWindowVisible takes the hwnd ancestor // visibility into account) if (! SafeNativeMethods.IsWindowVisible( nativeHwnd )) return; if (eventId == NativeMethods.EVENT_OBJECT_CREATE) { // Ignore WCP hwnd creates; we get eventId EventObjectUIFragmentCreate for those // string str = ProxyManager.GetClassName(nativeHwnd); if (String.Compare(str, 0, _wcpClassName, 0, _wcpClassName.Length, StringComparison.OrdinalIgnoreCase) == 0) return; } AutomationElement rawEl = AutomationElement.FromHandle( hwnd ); // Do the notify. Note that this handler is used to notify client-side UIAutomation providers of windows // being destroyed or hidden. The delegate called here is itself protected by a lock. This delegate may // call out to proxies but also calls ClientEventManager.RaiseEventInThisClientOnly which properly // queues the actual callout to client code. object [] handlers = GetHandlers(); Debug.Assert(handlers.Length <= 1, "handlers.Length"); if (handlers.Length > 0) ((WindowShowOrOpenHandler)handlers[0])( hwnd, rawEl ); } #endregion Internal Methods //------------------------------------------------------ // // Private Fields // //------------------------------------------------------ #region Private Fields static readonly string _wcpClassName = "HwndWrapper"; #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
- SchemaEntity.cs
- SessionKeyExpiredException.cs
- Constant.cs
- IncrementalHitTester.cs
- DataGridDefaultColumnWidthTypeConverter.cs
- Light.cs
- AuthenticationService.cs
- RegexInterpreter.cs
- storepermissionattribute.cs
- GregorianCalendarHelper.cs
- ToolStripDesignerAvailabilityAttribute.cs
- TrustSection.cs
- RequestBringIntoViewEventArgs.cs
- HybridDictionary.cs
- ConsumerConnectionPointCollection.cs
- FixedTextPointer.cs
- CodeSubDirectoriesCollection.cs
- DataServiceQueryOfT.cs
- XmlSchemaAttribute.cs
- SHA1CryptoServiceProvider.cs
- WeakReferenceEnumerator.cs
- XmlTextEncoder.cs
- ProfileGroupSettings.cs
- peersecuritysettings.cs
- SafeNativeMethodsMilCoreApi.cs
- ProtocolsConfiguration.cs
- StrongNameIdentityPermission.cs
- ResourceReferenceExpression.cs
- SafeNativeMethods.cs
- OperatingSystemVersionCheck.cs
- OleDbEnumerator.cs
- OrderPreservingMergeHelper.cs
- QilBinary.cs
- StrongName.cs
- OleDbMetaDataFactory.cs
- XPathNavigator.cs
- dbenumerator.cs
- ExceptionUtil.cs
- WindowAutomationPeer.cs
- DoubleLinkListEnumerator.cs
- CommandDevice.cs
- HtmlInputReset.cs
- PropertyPushdownHelper.cs
- DrawingGroup.cs
- FontStretch.cs
- ListViewInsertedEventArgs.cs
- TextFormatterHost.cs
- PersonalizationStateQuery.cs
- XmlNamedNodeMap.cs
- CodeDomConfigurationHandler.cs
- RecordManager.cs
- ComponentConverter.cs
- InvokeFunc.cs
- EntityDataSourceDesignerHelper.cs
- KoreanCalendar.cs
- MemberPath.cs
- ContentFileHelper.cs
- SignedXml.cs
- DataGridViewCellValueEventArgs.cs
- XPathNavigatorKeyComparer.cs
- ProtocolElement.cs
- ContractTypeNameCollection.cs
- ExpressionEditorAttribute.cs
- DeviceContext2.cs
- MarkupCompilePass1.cs
- ConfigXmlComment.cs
- Container.cs
- XmlSchemaSimpleTypeUnion.cs
- HttpConfigurationSystem.cs
- ItemsControl.cs
- IsolatedStorageFile.cs
- WebConfigManager.cs
- PeerCustomResolverSettings.cs
- TransactionFlowAttribute.cs
- Converter.cs
- OptimalTextSource.cs
- PhysicalFontFamily.cs
- MultiplexingDispatchMessageFormatter.cs
- DescendentsWalkerBase.cs
- DefaultTypeArgumentAttribute.cs
- FormViewUpdatedEventArgs.cs
- ParallelTimeline.cs
- ApplicationHost.cs
- WindowInteropHelper.cs
- DiscoveryClientChannelBase.cs
- MonthCalendar.cs
- CodePageUtils.cs
- Html32TextWriter.cs
- TextSelectionHighlightLayer.cs
- ExpressionQuoter.cs
- DataGridView.cs
- TypeSystem.cs
- X509CertificateRecipientServiceCredential.cs
- DynamicRenderer.cs
- EventPrivateKey.cs
- XmlCustomFormatter.cs
- PropertyManager.cs
- ExpressionPrinter.cs
- XmlEntityReference.cs
- DefaultBinder.cs