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 / WindowsListViewScroll.cs / 1 / WindowsListViewScroll.cs
//----------------------------------------------------------------------------
//
//
// Copyright (C) Microsoft Corporation. All rights reserved.
//
//
//
// Description: Class to provide scroll bars for listview
//
// History:
// Jean-Francois Peyroux (in DotNet)
// 2003/08/08 - alexsn Updated for WCP
// 2004/08/19 - preid Took this out of the class hierarchy for listview and made the
// non-client area use to create the scroll bar children
//
//---------------------------------------------------------------------------
using System;
using System.Runtime.InteropServices;
using System.ComponentModel;
using System.Windows.Automation;
using System.Windows.Automation.Provider;
using System.Windows;
using MS.Win32;
namespace MS.Internal.AutomationProxies
{
// The default implementation for scroll bars uses SB_THUMBTRACK and SB_THUMBPOSITION for SetValue
// This does not work with listview so the Scrollbar is overloaded with a derived version that
// uses LVM_SCROLL messages instead
class WindowsListViewScrollBar: WindowsScrollBar, IRangeValueProvider
{
// -----------------------------------------------------
//
// Constructors
//
//-----------------------------------------------------
#region Constructors
internal WindowsListViewScrollBar(IntPtr hwnd, ProxyFragment parent, int item, int sbFlag)
: base( hwnd, parent, item, sbFlag){}
#endregion Constructors
//------------------------------------------------------
//
// Patterns Implementation
//
//-----------------------------------------------------
#region RangeValue Pattern
void IRangeValueProvider.SetValue(double val)
{
// Check if the window is disabled
if (!SafeNativeMethods.IsWindowEnabled (_hwnd))
{
throw new ElementNotEnabledException();
}
NativeMethods.ScrollInfo si = new NativeMethods.ScrollInfo ();
si.fMask = NativeMethods.SIF_ALL;
si.cbSize = Marshal.SizeOf (si.GetType ());
if (!Misc.GetScrollInfo(_hwnd, _sbFlag, ref si))
{
return;
}
int pos = (int)val;
// Throw if val is greater than the maximum or less than the minimum.
// See remarks for WindowsScrollBar.GetScrollValue(ScrollBarInfo.MaximumPosition)
// regarding this calculation of the allowed maximum.
if (pos > si.nMax - si.nPage + (si.nPage > 0 ? 1 : 0))
{
throw new ArgumentOutOfRangeException("value", val, SR.Get(SRID.RangeValueMax));
}
else if (pos < si.nMin)
{
throw new ArgumentOutOfRangeException("value", val, SR.Get(SRID.RangeValueMin));
}
// LVM_SCROLL does not work in mode Report, use SetScrollPos instead
bool isVerticalScroll = IsScrollBarVertical(_hwnd, _sbFlag);
if (isVerticalScroll && WindowsListView.InReportView (_hwnd))
{
Misc.SetScrollPos(_hwnd, _sbFlag, pos, true);
return;
}
// get the "full size" of the list-view
int size = WindowsListView.ApproximateViewRect (_hwnd);
// delta between current and user-requested position in pixels
// since the cPelsAll contains the dimension in pels for all items + the 2 pels of the border
// the operation below does a trunc on purpose
int dx = 0, dy = 0;
if (!isVerticalScroll)
{
int cPelsAll = NativeMethods.Util.LOWORD (size);
dx = (int)((pos - si.nPos) * ((double)cPelsAll / (si.nMax + 1 - si.nMin)));
}
else
{
int cPelsAll = NativeMethods.Util.HIWORD (size);
dy = (int)((pos - si.nPos) * ((double)cPelsAll / (si.nMax + 1 - si.nMin)));
}
if (WindowsListView.Scroll (_hwnd, (IntPtr) dx, (IntPtr) dy))
{
// Check the result, on occasion the result will be different to given value
// a-jeanp: I played a lot to figure out what it is not the case.
// I am giving up and issuing instead a second call with a new delta.
if (!Misc.GetScrollInfo(_hwnd, _sbFlag, ref si))
{
return;
}
if (si.nPos != pos)
{
if (!isVerticalScroll)
{
int cPelsAll = NativeMethods.Util.LOWORD (size);
dx = (pos - si.nPos) * (cPelsAll / (si.nMax + 1 - si.nMin));
}
else
{
int cPelsAll = NativeMethods.Util.HIWORD (size);
dy = (pos - si.nPos) * (cPelsAll / (si.nMax + 1 - si.nMin));
}
WindowsListView.Scroll (_hwnd, (IntPtr) dx, (IntPtr) dy);
}
}
}
#endregion Value Pattern
}
}
// 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 to provide scroll bars for listview
//
// History:
// Jean-Francois Peyroux (in DotNet)
// 2003/08/08 - alexsn Updated for WCP
// 2004/08/19 - preid Took this out of the class hierarchy for listview and made the
// non-client area use to create the scroll bar children
//
//---------------------------------------------------------------------------
using System;
using System.Runtime.InteropServices;
using System.ComponentModel;
using System.Windows.Automation;
using System.Windows.Automation.Provider;
using System.Windows;
using MS.Win32;
namespace MS.Internal.AutomationProxies
{
// The default implementation for scroll bars uses SB_THUMBTRACK and SB_THUMBPOSITION for SetValue
// This does not work with listview so the Scrollbar is overloaded with a derived version that
// uses LVM_SCROLL messages instead
class WindowsListViewScrollBar: WindowsScrollBar, IRangeValueProvider
{
// -----------------------------------------------------
//
// Constructors
//
//-----------------------------------------------------
#region Constructors
internal WindowsListViewScrollBar(IntPtr hwnd, ProxyFragment parent, int item, int sbFlag)
: base( hwnd, parent, item, sbFlag){}
#endregion Constructors
//------------------------------------------------------
//
// Patterns Implementation
//
//-----------------------------------------------------
#region RangeValue Pattern
void IRangeValueProvider.SetValue(double val)
{
// Check if the window is disabled
if (!SafeNativeMethods.IsWindowEnabled (_hwnd))
{
throw new ElementNotEnabledException();
}
NativeMethods.ScrollInfo si = new NativeMethods.ScrollInfo ();
si.fMask = NativeMethods.SIF_ALL;
si.cbSize = Marshal.SizeOf (si.GetType ());
if (!Misc.GetScrollInfo(_hwnd, _sbFlag, ref si))
{
return;
}
int pos = (int)val;
// Throw if val is greater than the maximum or less than the minimum.
// See remarks for WindowsScrollBar.GetScrollValue(ScrollBarInfo.MaximumPosition)
// regarding this calculation of the allowed maximum.
if (pos > si.nMax - si.nPage + (si.nPage > 0 ? 1 : 0))
{
throw new ArgumentOutOfRangeException("value", val, SR.Get(SRID.RangeValueMax));
}
else if (pos < si.nMin)
{
throw new ArgumentOutOfRangeException("value", val, SR.Get(SRID.RangeValueMin));
}
// LVM_SCROLL does not work in mode Report, use SetScrollPos instead
bool isVerticalScroll = IsScrollBarVertical(_hwnd, _sbFlag);
if (isVerticalScroll && WindowsListView.InReportView (_hwnd))
{
Misc.SetScrollPos(_hwnd, _sbFlag, pos, true);
return;
}
// get the "full size" of the list-view
int size = WindowsListView.ApproximateViewRect (_hwnd);
// delta between current and user-requested position in pixels
// since the cPelsAll contains the dimension in pels for all items + the 2 pels of the border
// the operation below does a trunc on purpose
int dx = 0, dy = 0;
if (!isVerticalScroll)
{
int cPelsAll = NativeMethods.Util.LOWORD (size);
dx = (int)((pos - si.nPos) * ((double)cPelsAll / (si.nMax + 1 - si.nMin)));
}
else
{
int cPelsAll = NativeMethods.Util.HIWORD (size);
dy = (int)((pos - si.nPos) * ((double)cPelsAll / (si.nMax + 1 - si.nMin)));
}
if (WindowsListView.Scroll (_hwnd, (IntPtr) dx, (IntPtr) dy))
{
// Check the result, on occasion the result will be different to given value
// a-jeanp: I played a lot to figure out what it is not the case.
// I am giving up and issuing instead a second call with a new delta.
if (!Misc.GetScrollInfo(_hwnd, _sbFlag, ref si))
{
return;
}
if (si.nPos != pos)
{
if (!isVerticalScroll)
{
int cPelsAll = NativeMethods.Util.LOWORD (size);
dx = (pos - si.nPos) * (cPelsAll / (si.nMax + 1 - si.nMin));
}
else
{
int cPelsAll = NativeMethods.Util.HIWORD (size);
dy = (pos - si.nPos) * (cPelsAll / (si.nMax + 1 - si.nMin));
}
WindowsListView.Scroll (_hwnd, (IntPtr) dx, (IntPtr) dy);
}
}
}
#endregion Value Pattern
}
}
// 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
- FileDialog.cs
- CompoundFileDeflateTransform.cs
- NativeMethods.cs
- XmlTypeAttribute.cs
- MultiAsyncResult.cs
- ThemeDictionaryExtension.cs
- EditBehavior.cs
- ApplicationHost.cs
- Sql8ConformanceChecker.cs
- SourceFileBuildProvider.cs
- Binding.cs
- DateTimeOffset.cs
- SessionStateModule.cs
- RouteData.cs
- PersianCalendar.cs
- CapabilitiesAssignment.cs
- ReadOnlyNameValueCollection.cs
- MobileUserControlDesigner.cs
- RadioButtonStandardAdapter.cs
- WorkItem.cs
- StoreItemCollection.cs
- HtmlElement.cs
- SoapEnumAttribute.cs
- MediaContext.cs
- Lasso.cs
- ReachDocumentReferenceCollectionSerializer.cs
- HijriCalendar.cs
- TabPage.cs
- FileInfo.cs
- FullTextBreakpoint.cs
- RecommendedAsConfigurableAttribute.cs
- HandoffBehavior.cs
- TypeConverter.cs
- EventlogProvider.cs
- FixedSOMTable.cs
- Menu.cs
- ISCIIEncoding.cs
- DriveNotFoundException.cs
- LayeredChannelListener.cs
- XmlCharCheckingReader.cs
- ReflectPropertyDescriptor.cs
- SqlDuplicator.cs
- SelectionPatternIdentifiers.cs
- FaultHandlingFilter.cs
- DetailsViewInsertEventArgs.cs
- TreeViewItem.cs
- TreeViewAutomationPeer.cs
- TextClipboardData.cs
- ProtocolElementCollection.cs
- HtmlTernaryTree.cs
- DataKeyCollection.cs
- ReferencedCategoriesDocument.cs
- WindowsIPAddress.cs
- CatalogPartChrome.cs
- RoleGroup.cs
- ProviderUtil.cs
- HtmlListAdapter.cs
- UnSafeCharBuffer.cs
- ZipArchive.cs
- ApplicationHost.cs
- AttributeQuery.cs
- WindowVisualStateTracker.cs
- _ChunkParse.cs
- cache.cs
- CodeLabeledStatement.cs
- PointConverter.cs
- CompositeActivityCodeGenerator.cs
- MatrixTransform3D.cs
- PrimaryKeyTypeConverter.cs
- SecurityHeaderLayout.cs
- safex509handles.cs
- COM2ComponentEditor.cs
- RefType.cs
- GridViewCancelEditEventArgs.cs
- OnOperation.cs
- TargetInvocationException.cs
- BinaryKeyIdentifierClause.cs
- FixedFindEngine.cs
- FlowDocumentView.cs
- ScrollBarAutomationPeer.cs
- ConfigurationSectionGroup.cs
- TransformValueSerializer.cs
- XslNumber.cs
- ContextMenuStripActionList.cs
- Root.cs
- ComponentEvent.cs
- Section.cs
- BooleanToVisibilityConverter.cs
- UserControlParser.cs
- MoveSizeWinEventHandler.cs
- MemberExpression.cs
- GroupItemAutomationPeer.cs
- Document.cs
- FontConverter.cs
- TextRunCacheImp.cs
- PackageRelationship.cs
- newitemfactory.cs
- SafeUserTokenHandle.cs
- XmlSerializationReader.cs
- RemoteHelper.cs