Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / Orcas / QFE / wpf / src / UIAutomation / UIAutomationClient / MS / Internal / Automation / WindowVisualStateTracker.cs / 1 / WindowVisualStateTracker.cs
//---------------------------------------------------------------------------- // //// Copyright (C) Microsoft Corporation. All rights reserved. // // // // Description: Class used to track the visual appearance of Windows and make sure any events // are propogated to that new UI. // // History: // 01/05/2005 : Miw Created // //--------------------------------------------------------------------------- using System; using System.Windows.Automation; using MS.Win32; namespace MS.Internal.Automation { // Class used to track new UI appearing and make sure any events // are propogated to that new UI. internal class WindowVisualStateTracker : WinEventWrap { //----------------------------------------------------- // // Constructors // //----------------------------------------------------- #region Constructors internal WindowVisualStateTracker() : base(new int[] { NativeMethods.EVENT_OBJECT_LOCATIONCHANGE }) { // Intentionally not setting the callback for the base WinEventWrap since the WinEventProc override // in this class calls RaiseEventInThisClientOnly to actually raise the event to the client. } #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; } OnStateChange(hwnd, idObject, idChild); } #endregion Internal Methods //------------------------------------------------------ // // Private Methods // //------------------------------------------------------ #region Private Methods private void OnStateChange(IntPtr hwnd, int idObject, int idChild) { NativeMethods.HWND nativeHwnd = NativeMethods.HWND.Cast(hwnd); // Ignore windows that have been destroyed if (!SafeNativeMethods.IsWindow(nativeHwnd)) { return; } AutomationElement rawEl = AutomationElement.FromHandle(hwnd); // Raise this event only for elements with the WindowPattern. object patternObject; if (!rawEl.TryGetCurrentPattern(WindowPattern.Pattern, out patternObject)) return; Object windowVisualState = rawEl.GetPatternPropertyValue(WindowPattern.WindowVisualStateProperty, false); // if has no state value just return if (!(windowVisualState is WindowVisualState)) { return; } WindowVisualState state = (WindowVisualState)windowVisualState; // Filter... avoid duplicate events if (hwnd == _lastHwnd && state == _lastState) { return; } AutomationPropertyChangedEventArgs e = new AutomationPropertyChangedEventArgs( WindowPattern.WindowVisualStateProperty, null, state); ClientEventManager.RaiseEventInThisClientOnly(AutomationElement.AutomationPropertyChangedEvent, rawEl, e); // save the last hwnd/rect for filtering out duplicates _lastHwnd = hwnd; _lastState = state; } #endregion Private Methods //----------------------------------------------------- // // Private Fields // //------------------------------------------------------ #region Private Fields private WindowVisualState _lastState; // keep track of last visual state private IntPtr _lastHwnd; // and hwnd for dup checking #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 the visual appearance of Windows and make sure any events // are propogated to that new UI. // // History: // 01/05/2005 : Miw Created // //--------------------------------------------------------------------------- using System; using System.Windows.Automation; using MS.Win32; namespace MS.Internal.Automation { // Class used to track new UI appearing and make sure any events // are propogated to that new UI. internal class WindowVisualStateTracker : WinEventWrap { //----------------------------------------------------- // // Constructors // //----------------------------------------------------- #region Constructors internal WindowVisualStateTracker() : base(new int[] { NativeMethods.EVENT_OBJECT_LOCATIONCHANGE }) { // Intentionally not setting the callback for the base WinEventWrap since the WinEventProc override // in this class calls RaiseEventInThisClientOnly to actually raise the event to the client. } #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; } OnStateChange(hwnd, idObject, idChild); } #endregion Internal Methods //------------------------------------------------------ // // Private Methods // //------------------------------------------------------ #region Private Methods private void OnStateChange(IntPtr hwnd, int idObject, int idChild) { NativeMethods.HWND nativeHwnd = NativeMethods.HWND.Cast(hwnd); // Ignore windows that have been destroyed if (!SafeNativeMethods.IsWindow(nativeHwnd)) { return; } AutomationElement rawEl = AutomationElement.FromHandle(hwnd); // Raise this event only for elements with the WindowPattern. object patternObject; if (!rawEl.TryGetCurrentPattern(WindowPattern.Pattern, out patternObject)) return; Object windowVisualState = rawEl.GetPatternPropertyValue(WindowPattern.WindowVisualStateProperty, false); // if has no state value just return if (!(windowVisualState is WindowVisualState)) { return; } WindowVisualState state = (WindowVisualState)windowVisualState; // Filter... avoid duplicate events if (hwnd == _lastHwnd && state == _lastState) { return; } AutomationPropertyChangedEventArgs e = new AutomationPropertyChangedEventArgs( WindowPattern.WindowVisualStateProperty, null, state); ClientEventManager.RaiseEventInThisClientOnly(AutomationElement.AutomationPropertyChangedEvent, rawEl, e); // save the last hwnd/rect for filtering out duplicates _lastHwnd = hwnd; _lastState = state; } #endregion Private Methods //----------------------------------------------------- // // Private Fields // //------------------------------------------------------ #region Private Fields private WindowVisualState _lastState; // keep track of last visual state private IntPtr _lastHwnd; // and hwnd for dup checking #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
- KnownTypes.cs
- VirtualPathUtility.cs
- DynamicDiscoSearcher.cs
- CqlIdentifiers.cs
- BinaryOperationBinder.cs
- Oid.cs
- WebPartManagerInternals.cs
- ControlParameter.cs
- WsatStrings.cs
- Formatter.cs
- Certificate.cs
- InstanceKeyCollisionException.cs
- DrawingAttributeSerializer.cs
- GZipDecoder.cs
- CodeTryCatchFinallyStatement.cs
- StorageBasedPackageProperties.cs
- ExecutionPropertyManager.cs
- TabItemWrapperAutomationPeer.cs
- _SafeNetHandles.cs
- InlineCollection.cs
- PreservationFileWriter.cs
- VisualCollection.cs
- TextRenderer.cs
- ScaleTransform.cs
- BuildResultCache.cs
- Track.cs
- UpdateTracker.cs
- ReadOnlyPropertyMetadata.cs
- WorkflowApplicationAbortedException.cs
- ResourceSet.cs
- RegexWriter.cs
- PageEventArgs.cs
- HtmlShim.cs
- CRYPTPROTECT_PROMPTSTRUCT.cs
- XmlCDATASection.cs
- IDictionary.cs
- ExpressionVisitorHelpers.cs
- CodeSubDirectory.cs
- TextServicesHost.cs
- CodeDomComponentSerializationService.cs
- RunClient.cs
- HttpCacheParams.cs
- DbRetry.cs
- AtomContentProperty.cs
- WsdlHelpGeneratorElement.cs
- Select.cs
- ColumnHeader.cs
- CultureInfo.cs
- SchemaNamespaceManager.cs
- TextParaLineResult.cs
- DataError.cs
- CustomAttribute.cs
- sqlpipe.cs
- WorkflowOwnershipException.cs
- AtlasWeb.Designer.cs
- PeerNameRegistration.cs
- SignatureDescription.cs
- HyperLinkField.cs
- XPathNavigator.cs
- MetaModel.cs
- Attributes.cs
- GeneralTransformCollection.cs
- DataObject.cs
- ExpressionVisitorHelpers.cs
- TraceListener.cs
- ComUdtElement.cs
- PathNode.cs
- CqlQuery.cs
- XmlSchemaAppInfo.cs
- FontDifferentiator.cs
- InvalidPropValue.cs
- MouseButtonEventArgs.cs
- DynamicPropertyHolder.cs
- ReflectionTypeLoadException.cs
- ComponentEditorForm.cs
- ExpressionVisitor.cs
- XPathNodeIterator.cs
- BindableTemplateBuilder.cs
- Point4DConverter.cs
- FixedPageAutomationPeer.cs
- ColorTranslator.cs
- ScrollItemProviderWrapper.cs
- HMACSHA256.cs
- OpenFileDialog.cs
- Pair.cs
- WindowsSlider.cs
- ItemCollection.cs
- CultureInfoConverter.cs
- ProvidersHelper.cs
- LocalValueEnumerator.cs
- SelectorAutomationPeer.cs
- TagPrefixInfo.cs
- GlobalAllocSafeHandle.cs
- CompatibleIComparer.cs
- SelectionItemProviderWrapper.cs
- PriorityBinding.cs
- RoleGroupCollection.cs
- SqlUDTStorage.cs
- FieldAccessException.cs
- ClientApiGenerator.cs