Code:
/ DotNET / DotNET / 8.0 / untmp / WIN_WINDOWS / lh_tools_devdiv_wpf / Windows / AccessibleTech / longhorn / Automation / Win32Providers / MS / Internal / AutomationProxies / WindowsGrip.cs / 1 / WindowsGrip.cs
//---------------------------------------------------------------------------- // //// Copyright (C) Microsoft Corporation. All rights reserved. // // // // Description: Windows Button Proxy // // History: // 07/01/2003 : [....] Created //--------------------------------------------------------------------------- using System; using System.Collections; using System.Text; using System.Runtime.InteropServices; using System.Windows; using System.Windows.Automation; using System.Windows.Automation.Provider; using System.ComponentModel; using MS.Win32; namespace MS.Internal.AutomationProxies { class WindowsGrip: ProxyFragment { // ----------------------------------------------------- // // Constructors // //----------------------------------------------------- #region Constructors public WindowsGrip (IntPtr hwnd, ProxyHwnd parent, int item) : base( hwnd, parent, item) { _sType = ST.Get(STID.LocalizedControlTypeGrip); _sAutomationId = "Window.Grip"; // This string is a non-localizable string } #endregion //------------------------------------------------------ // // Patterns Implementation // //----------------------------------------------------- #region ProxySimple Interface ////// Gets the bounding rectangle for this element /// internal override Rect BoundingRectangle { get { if (IsGripPresent(_hwnd, false)) { NativeMethods.Win32Rect client = new NativeMethods.Win32Rect(); if (Misc.GetClientRectInScreenCoordinates(_hwnd, ref client)) { NativeMethods.SIZE sizeGrip = GetGripSize(_hwnd, false); if (Misc.IsLayoutRTL(_hwnd)) { return new Rect(client.left - sizeGrip.cx, client.bottom, sizeGrip.cx, sizeGrip.cy); } else { return new Rect(client.right, client.bottom, sizeGrip.cx, sizeGrip.cy); } } } return Rect.Empty; } } #endregion //------------------------------------------------------ // // Internal Methods // //------------------------------------------------------ #region Internal Methods static internal bool IsGripPresent(IntPtr hwnd, bool onStatusBar) { NativeMethods.Win32Rect client = new NativeMethods.Win32Rect(); if (!Misc.GetClientRectInScreenCoordinates(hwnd, ref client)) { return false; } // According to the documentation of GetClientRect, the left and top members are zero. So if // they are negitive the control must be minimized, therefore the grip is not present. if (client.left < 0 && client.top < 0 ) { return false; } NativeMethods.SIZE sizeGrip = GetGripSize(hwnd, onStatusBar); if (!onStatusBar) { // When not on a status bar the grip should be out side of the client area. sizeGrip.cx *= -1; sizeGrip.cy *= -1; } if (Misc.IsLayoutRTL(hwnd)) { int x = client.left + (int)(sizeGrip.cx / 2); int y = client.bottom - (int)(sizeGrip.cy / 2); int hit = Misc.ProxySendMessageInt(hwnd, NativeMethods.WM_NCHITTEST, IntPtr.Zero, NativeMethods.Util.MAKELPARAM(x, y)); return hit == NativeMethods.HTBOTTOMLEFT; } else { int x = client.right - (int)(sizeGrip.cx / 2); int y = client.bottom - (int)(sizeGrip.cy / 2); int hit = Misc.ProxySendMessageInt(hwnd, NativeMethods.WM_NCHITTEST, IntPtr.Zero, NativeMethods.Util.MAKELPARAM(x, y)); return hit == NativeMethods.HTBOTTOMRIGHT; } } internal static NativeMethods.SIZE GetGripSize(IntPtr hwnd, bool onStatusBar) { using (ThemePart themePart = new ThemePart(hwnd, onStatusBar ? "STATUS" : "SCROLLBAR")) { return themePart.Size(onStatusBar ? (int)ThemePart.STATUSPARTS.SP_GRIPPER : (int)ThemePart.SCROLLBARPARTS.SBP_SIZEBOX, 0); } } #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
- IPPacketInformation.cs
- RetrieveVirtualItemEventArgs.cs
- XmlSerializerAssemblyAttribute.cs
- Int32EqualityComparer.cs
- AliasGenerator.cs
- __ConsoleStream.cs
- MarkupObject.cs
- RenderDataDrawingContext.cs
- SafeFileMappingHandle.cs
- ExtensionDataReader.cs
- EventToken.cs
- DataContractJsonSerializer.cs
- EventLogPropertySelector.cs
- ThreadExceptionEvent.cs
- XmlAttributeHolder.cs
- ArcSegment.cs
- AllMembershipCondition.cs
- _ServiceNameStore.cs
- Stream.cs
- ISCIIEncoding.cs
- OdbcConnectionStringbuilder.cs
- DynamicRendererThreadManager.cs
- LoginName.cs
- CodeCommentStatement.cs
- WorkItem.cs
- ObjectComplexPropertyMapping.cs
- newinstructionaction.cs
- CultureMapper.cs
- DesignerVerb.cs
- EventSourceCreationData.cs
- sqlmetadatafactory.cs
- ApplicationCommands.cs
- ProcessManager.cs
- DataGridViewComboBoxColumn.cs
- BamlVersionHeader.cs
- BaseWebProxyFinder.cs
- TimeStampChecker.cs
- DrawingAttributeSerializer.cs
- UnknownBitmapDecoder.cs
- TokenCreationParameter.cs
- SurrogateChar.cs
- EntityDataSourceDesigner.cs
- HostedHttpTransportManager.cs
- AssemblyBuilderData.cs
- UrlUtility.cs
- QueryPageSettingsEventArgs.cs
- DependencySource.cs
- MapPathBasedVirtualPathProvider.cs
- SafeNativeMethodsMilCoreApi.cs
- HttpRawResponse.cs
- ActivityBindForm.Designer.cs
- Line.cs
- DataControlFieldCell.cs
- OutputScope.cs
- TextEditorContextMenu.cs
- OdbcStatementHandle.cs
- PeerPresenceInfo.cs
- DataSetMappper.cs
- DebugInfoGenerator.cs
- ImpersonationContext.cs
- GiveFeedbackEventArgs.cs
- FixUp.cs
- ReferencedAssembly.cs
- PopupEventArgs.cs
- AppDomainFactory.cs
- ZipIOLocalFileHeader.cs
- CircleHotSpot.cs
- StreamGeometry.cs
- CodeTypeConstructor.cs
- Misc.cs
- MouseGestureValueSerializer.cs
- XPathQueryGenerator.cs
- RenderDataDrawingContext.cs
- WindowCollection.cs
- X509ServiceCertificateAuthenticationElement.cs
- DataGridAddNewRow.cs
- ScriptRegistrationManager.cs
- MDIClient.cs
- AlphabetConverter.cs
- MultiDataTrigger.cs
- CapabilitiesState.cs
- TemporaryBitmapFile.cs
- ProcessInfo.cs
- ListView.cs
- XmlQualifiedNameTest.cs
- BinHexEncoding.cs
- EventEntry.cs
- Token.cs
- EasingKeyFrames.cs
- _AuthenticationState.cs
- DecimalConverter.cs
- XmlnsPrefixAttribute.cs
- ExpressionVisitor.cs
- BreakRecordTable.cs
- Vector3DKeyFrameCollection.cs
- RequestCacheEntry.cs
- StrongNameIdentityPermission.cs
- EnumConverter.cs
- NegotiateStream.cs
- SessionEndingCancelEventArgs.cs