Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / Orcas / NetFXw7 / wpf / src / UIAutomation / Win32Providers / MS / Internal / AutomationProxies / WindowsToolbarItemAsMenuItem.cs / 1 / WindowsToolbarItemAsMenuItem.cs
//---------------------------------------------------------------------------- // //// Copyright (C) Microsoft Corporation. All rights reserved. // // // // Description: Some applications implement menus with toolbars. This proxy // will used the IAccessible to expose these toolbar items as // menu items. This proxy is derived from ToolbarItem since // the underlying control really is a toolbar and ToolbarItem // knows how to communicate with a toolbars to get information for // toolbar items already. // // History: // 01/31/2005 : [....] Created //--------------------------------------------------------------------------- using System; using System.Windows.Automation; using MS.Win32; namespace MS.Internal.AutomationProxies { class ToolbarItemAsMenuItem : ToolbarItem { // ----------------------------------------------------- // // Constructors // // ----------------------------------------------------- #region Constructors internal ToolbarItemAsMenuItem(IntPtr hwnd, ProxyFragment parent, int item, int idCommand, Accessible acc) : base(hwnd, parent, item, idCommand) { _acc = acc; // Set the control type based on the IAccessible role. AccessibleRole role = acc.Role; if (role == AccessibleRole.MenuItem) { _cControlType = ControlType.MenuItem; } else { System.Diagnostics.Debug.Assert(false, "Unexpected role " + role); } // MenuItems are by default KeyboardFocusable. _fIsKeyboardFocusable = true; } #endregion // ------------------------------------------------------ // // Patterns Implementation // // ----------------------------------------------------- #region ProxySimple Interface // Returns a pattern interface if supported. internal override object GetPatternProvider (AutomationPattern iid) { // Treate these toolbar items as menuitems and only support Invoke or Expand/Collapse patterns. // Invoke Pattern needs to be supported when the item has no children. When the item does have // children it needs to support ExpandCollapse Pattern. // Check if button is a separator if (IsSeparator()) { return null; } // Check if button is disabled if (Misc.ProxySendMessageInt(_hwnd, NativeMethods.TB_ISBUTTONENABLED, new IntPtr(_idCommand), IntPtr.Zero) == 0) { return null; } // Check if button is hidden if (Misc.ProxySendMessageInt(_hwnd, NativeMethods.TB_ISBUTTONHIDDEN, new IntPtr(_idCommand), IntPtr.Zero) != 0) { return null; } // if (iid == InvokePattern.Pattern) { // button is enabled and not hidden and not a separator return this; } // return null; } // Process all the Element Properties internal override object GetElementProperty(AutomationProperty idProp) { if (idProp == AutomationElement.HasKeyboardFocusProperty) { return IsFocused(); } return base.GetElementProperty(idProp); } #endregion // ------------------------------------------------------ // // Private Fields // // ------------------------------------------------------ #region Private Fields Accessible _acc; #endregion } } // 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: Some applications implement menus with toolbars. This proxy // will used the IAccessible to expose these toolbar items as // menu items. This proxy is derived from ToolbarItem since // the underlying control really is a toolbar and ToolbarItem // knows how to communicate with a toolbars to get information for // toolbar items already. // // History: // 01/31/2005 : [....] Created //--------------------------------------------------------------------------- using System; using System.Windows.Automation; using MS.Win32; namespace MS.Internal.AutomationProxies { class ToolbarItemAsMenuItem : ToolbarItem { // ----------------------------------------------------- // // Constructors // // ----------------------------------------------------- #region Constructors internal ToolbarItemAsMenuItem(IntPtr hwnd, ProxyFragment parent, int item, int idCommand, Accessible acc) : base(hwnd, parent, item, idCommand) { _acc = acc; // Set the control type based on the IAccessible role. AccessibleRole role = acc.Role; if (role == AccessibleRole.MenuItem) { _cControlType = ControlType.MenuItem; } else { System.Diagnostics.Debug.Assert(false, "Unexpected role " + role); } // MenuItems are by default KeyboardFocusable. _fIsKeyboardFocusable = true; } #endregion // ------------------------------------------------------ // // Patterns Implementation // // ----------------------------------------------------- #region ProxySimple Interface // Returns a pattern interface if supported. internal override object GetPatternProvider (AutomationPattern iid) { // Treate these toolbar items as menuitems and only support Invoke or Expand/Collapse patterns. // Invoke Pattern needs to be supported when the item has no children. When the item does have // children it needs to support ExpandCollapse Pattern. // Check if button is a separator if (IsSeparator()) { return null; } // Check if button is disabled if (Misc.ProxySendMessageInt(_hwnd, NativeMethods.TB_ISBUTTONENABLED, new IntPtr(_idCommand), IntPtr.Zero) == 0) { return null; } // Check if button is hidden if (Misc.ProxySendMessageInt(_hwnd, NativeMethods.TB_ISBUTTONHIDDEN, new IntPtr(_idCommand), IntPtr.Zero) != 0) { return null; } // if (iid == InvokePattern.Pattern) { // button is enabled and not hidden and not a separator return this; } // return null; } // Process all the Element Properties internal override object GetElementProperty(AutomationProperty idProp) { if (idProp == AutomationElement.HasKeyboardFocusProperty) { return IsFocused(); } return base.GetElementProperty(idProp); } #endregion // ------------------------------------------------------ // // Private Fields // // ------------------------------------------------------ #region Private Fields Accessible _acc; #endregion } } // 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
- ObjectListShowCommandsEventArgs.cs
- CultureSpecificCharacterBufferRange.cs
- AssemblyGen.cs
- NativeMethods.cs
- SimpleMailWebEventProvider.cs
- Metafile.cs
- WeakReferenceEnumerator.cs
- SmiGettersStream.cs
- HttpInputStream.cs
- View.cs
- ConfigurationValues.cs
- ReadOnlyHierarchicalDataSourceView.cs
- HttpApplication.cs
- ProcessModule.cs
- ToolStripItemTextRenderEventArgs.cs
- BrowserCapabilitiesCompiler.cs
- XmlnsCompatibleWithAttribute.cs
- GridViewHeaderRowPresenterAutomationPeer.cs
- MultiTargetingUtil.cs
- PointAnimationClockResource.cs
- DynamicDataResources.Designer.cs
- EntityViewContainer.cs
- ToolBar.cs
- AuthenticationManager.cs
- SecureUICommand.cs
- ConnectionManagementElementCollection.cs
- PrimitiveOperationFormatter.cs
- AnnotationService.cs
- WmlLinkAdapter.cs
- PlainXmlSerializer.cs
- ConnectionsZoneAutoFormat.cs
- MeshGeometry3D.cs
- HttpResponseInternalWrapper.cs
- RuntimeHelpers.cs
- StylusEditingBehavior.cs
- EditingMode.cs
- Stopwatch.cs
- ReadingWritingEntityEventArgs.cs
- DataSourceControlBuilder.cs
- XmlSortKey.cs
- XmlMembersMapping.cs
- XmlSerializableWriter.cs
- OleAutBinder.cs
- FileFormatException.cs
- MergePropertyDescriptor.cs
- QuerySetOp.cs
- DeploymentSection.cs
- TrustSection.cs
- ListViewSelectEventArgs.cs
- MatrixConverter.cs
- BufferedGraphics.cs
- CommandBindingCollection.cs
- PasswordTextNavigator.cs
- Command.cs
- Nullable.cs
- TcpTransportManager.cs
- SimpleNameService.cs
- WebCodeGenerator.cs
- ContentControl.cs
- Int16KeyFrameCollection.cs
- ControlBuilderAttribute.cs
- ComplexPropertyEntry.cs
- XmlTextReaderImplHelpers.cs
- SortDescriptionCollection.cs
- StaticExtensionConverter.cs
- TrimSurroundingWhitespaceAttribute.cs
- TypeReference.cs
- WeakReadOnlyCollection.cs
- SmtpDigestAuthenticationModule.cs
- XPathPatternBuilder.cs
- Timer.cs
- Header.cs
- DataTableClearEvent.cs
- WriteableBitmap.cs
- Ipv6Element.cs
- ManagementQuery.cs
- ControlBindingsCollection.cs
- Group.cs
- Point3DCollection.cs
- ReturnType.cs
- TextModifierScope.cs
- ModelTypeConverter.cs
- JournalNavigationScope.cs
- DataGridViewComboBoxColumn.cs
- ExpandSegmentCollection.cs
- InternalConfigHost.cs
- ValueQuery.cs
- Deflater.cs
- XmlQueryTypeFactory.cs
- GenericRootAutomationPeer.cs
- TableMethodGenerator.cs
- ToolStripOverflow.cs
- UseAttributeSetsAction.cs
- ImageSourceConverter.cs
- DataSourceControlBuilder.cs
- BufferedGraphics.cs
- Binding.cs
- SafeProcessHandle.cs
- Cursor.cs
- AppSettingsReader.cs