csharpc-sharpdotnetxamlavaloniauicross-platformcross-platform-xamlavaloniaguimulti-platformuser-interfacedotnetcore
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
993 lines
38 KiB
993 lines
38 KiB
using System;
|
|
using Avalonia.Reactive;
|
|
using Avalonia.Automation.Peers;
|
|
using Avalonia.Controls.Metadata;
|
|
using Avalonia.Controls.Presenters;
|
|
using Avalonia.Controls.Primitives;
|
|
using Avalonia.Input;
|
|
using Avalonia.Interactivity;
|
|
|
|
namespace Avalonia.Controls
|
|
{
|
|
/// <summary>
|
|
/// A control which scrolls its content if the content is bigger than the space available.
|
|
/// </summary>
|
|
[TemplatePart("PART_HorizontalScrollBar", typeof(ScrollBar))]
|
|
[TemplatePart("PART_VerticalScrollBar", typeof(ScrollBar))]
|
|
public class ScrollViewer : ContentControl, IScrollable, IScrollAnchorProvider
|
|
{
|
|
/// <summary>
|
|
/// Defines the <see cref="CanHorizontallyScroll"/> property.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// There is no public C# accessor for this property as it is intended to be bound to by a
|
|
/// <see cref="ScrollContentPresenter"/> in the control's template.
|
|
/// </remarks>
|
|
public static readonly DirectProperty<ScrollViewer, bool> CanHorizontallyScrollProperty =
|
|
AvaloniaProperty.RegisterDirect<ScrollViewer, bool>(
|
|
nameof(CanHorizontallyScroll),
|
|
o => o.CanHorizontallyScroll);
|
|
|
|
/// <summary>
|
|
/// Defines the <see cref="CanVerticallyScroll"/> property.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// There is no public C# accessor for this property as it is intended to be bound to by a
|
|
/// <see cref="ScrollContentPresenter"/> in the control's template.
|
|
/// </remarks>
|
|
public static readonly DirectProperty<ScrollViewer, bool> CanVerticallyScrollProperty =
|
|
AvaloniaProperty.RegisterDirect<ScrollViewer, bool>(
|
|
nameof(CanVerticallyScroll),
|
|
o => o.CanVerticallyScroll);
|
|
|
|
/// <summary>
|
|
/// Defines the <see cref="Extent"/> property.
|
|
/// </summary>
|
|
public static readonly DirectProperty<ScrollViewer, Size> ExtentProperty =
|
|
AvaloniaProperty.RegisterDirect<ScrollViewer, Size>(nameof(Extent),
|
|
o => o.Extent,
|
|
(o, v) => o.Extent = v);
|
|
|
|
/// <summary>
|
|
/// Defines the <see cref="Offset"/> property.
|
|
/// </summary>
|
|
public static readonly DirectProperty<ScrollViewer, Vector> OffsetProperty =
|
|
AvaloniaProperty.RegisterDirect<ScrollViewer, Vector>(
|
|
nameof(Offset),
|
|
o => o.Offset,
|
|
(o, v) => o.Offset = v);
|
|
|
|
/// <summary>
|
|
/// Defines the <see cref="Viewport"/> property.
|
|
/// </summary>
|
|
public static readonly DirectProperty<ScrollViewer, Size> ViewportProperty =
|
|
AvaloniaProperty.RegisterDirect<ScrollViewer, Size>(nameof(Viewport),
|
|
o => o.Viewport,
|
|
(o, v) => o.Viewport = v);
|
|
|
|
/// <summary>
|
|
/// Defines the <see cref="LargeChange"/> property.
|
|
/// </summary>
|
|
public static readonly DirectProperty<ScrollViewer, Size> LargeChangeProperty =
|
|
AvaloniaProperty.RegisterDirect<ScrollViewer, Size>(
|
|
nameof(LargeChange),
|
|
o => o.LargeChange);
|
|
|
|
/// <summary>
|
|
/// Defines the <see cref="SmallChange"/> property.
|
|
/// </summary>
|
|
public static readonly DirectProperty<ScrollViewer, Size> SmallChangeProperty =
|
|
AvaloniaProperty.RegisterDirect<ScrollViewer, Size>(
|
|
nameof(SmallChange),
|
|
o => o.SmallChange);
|
|
|
|
/// <summary>
|
|
/// Defines the HorizontalScrollBarMaximum property.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// There is no public C# accessor for this property as it is intended to be bound to by a
|
|
/// <see cref="ScrollContentPresenter"/> in the control's template.
|
|
/// </remarks>
|
|
public static readonly DirectProperty<ScrollViewer, double> HorizontalScrollBarMaximumProperty =
|
|
AvaloniaProperty.RegisterDirect<ScrollViewer, double>(
|
|
nameof(HorizontalScrollBarMaximum),
|
|
o => o.HorizontalScrollBarMaximum);
|
|
|
|
/// <summary>
|
|
/// Defines the HorizontalScrollBarValue property.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// There is no public C# accessor for this property as it is intended to be bound to by a
|
|
/// <see cref="ScrollContentPresenter"/> in the control's template.
|
|
/// </remarks>
|
|
public static readonly DirectProperty<ScrollViewer, double> HorizontalScrollBarValueProperty =
|
|
AvaloniaProperty.RegisterDirect<ScrollViewer, double>(
|
|
nameof(HorizontalScrollBarValue),
|
|
o => o.HorizontalScrollBarValue,
|
|
(o, v) => o.HorizontalScrollBarValue = v);
|
|
|
|
/// <summary>
|
|
/// Defines the HorizontalScrollBarViewportSize property.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// There is no public C# accessor for this property as it is intended to be bound to by a
|
|
/// <see cref="ScrollContentPresenter"/> in the control's template.
|
|
/// </remarks>
|
|
public static readonly DirectProperty<ScrollViewer, double> HorizontalScrollBarViewportSizeProperty =
|
|
AvaloniaProperty.RegisterDirect<ScrollViewer, double>(
|
|
nameof(HorizontalScrollBarViewportSize),
|
|
o => o.HorizontalScrollBarViewportSize);
|
|
|
|
/// <summary>
|
|
/// Defines the <see cref="HorizontalScrollBarVisibility"/> property.
|
|
/// </summary>
|
|
public static readonly AttachedProperty<ScrollBarVisibility> HorizontalScrollBarVisibilityProperty =
|
|
AvaloniaProperty.RegisterAttached<ScrollViewer, Control, ScrollBarVisibility>(
|
|
nameof(HorizontalScrollBarVisibility),
|
|
ScrollBarVisibility.Disabled);
|
|
|
|
/// <summary>
|
|
/// Defines the VerticalScrollBarMaximum property.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// There is no public C# accessor for this property as it is intended to be bound to by a
|
|
/// <see cref="ScrollContentPresenter"/> in the control's template.
|
|
/// </remarks>
|
|
public static readonly DirectProperty<ScrollViewer, double> VerticalScrollBarMaximumProperty =
|
|
AvaloniaProperty.RegisterDirect<ScrollViewer, double>(
|
|
nameof(VerticalScrollBarMaximum),
|
|
o => o.VerticalScrollBarMaximum);
|
|
|
|
/// <summary>
|
|
/// Defines the VerticalScrollBarValue property.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// There is no public C# accessor for this property as it is intended to be bound to by a
|
|
/// <see cref="ScrollContentPresenter"/> in the control's template.
|
|
/// </remarks>
|
|
public static readonly DirectProperty<ScrollViewer, double> VerticalScrollBarValueProperty =
|
|
AvaloniaProperty.RegisterDirect<ScrollViewer, double>(
|
|
nameof(VerticalScrollBarValue),
|
|
o => o.VerticalScrollBarValue,
|
|
(o, v) => o.VerticalScrollBarValue = v);
|
|
|
|
/// <summary>
|
|
/// Defines the <see cref="HorizontalSnapPointsType"/> property.
|
|
/// </summary>
|
|
public static readonly AttachedProperty<SnapPointsType> HorizontalSnapPointsTypeProperty =
|
|
AvaloniaProperty.RegisterAttached<ScrollViewer, Control, SnapPointsType>(
|
|
nameof(HorizontalSnapPointsType));
|
|
|
|
/// <summary>
|
|
/// Defines the <see cref="VerticalSnapPointsType"/> property.
|
|
/// </summary>
|
|
public static readonly AttachedProperty<SnapPointsType> VerticalSnapPointsTypeProperty =
|
|
AvaloniaProperty.RegisterAttached<ScrollViewer, Control, SnapPointsType>(
|
|
nameof(VerticalSnapPointsType));
|
|
|
|
/// <summary>
|
|
/// Defines the <see cref="HorizontalSnapPointsAlignment"/> property.
|
|
/// </summary>
|
|
public static readonly AttachedProperty<SnapPointsAlignment> HorizontalSnapPointsAlignmentProperty =
|
|
AvaloniaProperty.RegisterAttached<ScrollViewer, Control, SnapPointsAlignment>(
|
|
nameof(HorizontalSnapPointsAlignment));
|
|
|
|
/// <summary>
|
|
/// Defines the <see cref="VerticalSnapPointsAlignment"/> property.
|
|
/// </summary>
|
|
public static readonly AttachedProperty<SnapPointsAlignment> VerticalSnapPointsAlignmentProperty =
|
|
AvaloniaProperty.RegisterAttached<ScrollViewer, Control, SnapPointsAlignment>(
|
|
nameof(VerticalSnapPointsAlignment));
|
|
|
|
/// <summary>
|
|
/// Defines the VerticalScrollBarViewportSize property.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// There is no public C# accessor for this property as it is intended to be bound to by a
|
|
/// <see cref="ScrollContentPresenter"/> in the control's template.
|
|
/// </remarks>
|
|
public static readonly DirectProperty<ScrollViewer, double> VerticalScrollBarViewportSizeProperty =
|
|
AvaloniaProperty.RegisterDirect<ScrollViewer, double>(
|
|
nameof(VerticalScrollBarViewportSize),
|
|
o => o.VerticalScrollBarViewportSize);
|
|
|
|
/// <summary>
|
|
/// Defines the <see cref="VerticalScrollBarVisibility"/> property.
|
|
/// </summary>
|
|
public static readonly AttachedProperty<ScrollBarVisibility> VerticalScrollBarVisibilityProperty =
|
|
AvaloniaProperty.RegisterAttached<ScrollViewer, Control, ScrollBarVisibility>(
|
|
nameof(VerticalScrollBarVisibility),
|
|
ScrollBarVisibility.Auto);
|
|
|
|
/// <summary>
|
|
/// Defines the <see cref="IsExpandedProperty"/> property.
|
|
/// </summary>
|
|
public static readonly DirectProperty<ScrollViewer, bool> IsExpandedProperty =
|
|
ScrollBar.IsExpandedProperty.AddOwner<ScrollViewer>(o => o.IsExpanded);
|
|
|
|
/// <summary>
|
|
/// Defines the <see cref="AllowAutoHide"/> property.
|
|
/// </summary>
|
|
public static readonly AttachedProperty<bool> AllowAutoHideProperty =
|
|
AvaloniaProperty.RegisterAttached<ScrollViewer, Control, bool>(
|
|
nameof(AllowAutoHide),
|
|
true);
|
|
|
|
/// <summary>
|
|
/// Defines the <see cref="IsScrollChainingEnabled"/> property.
|
|
/// </summary>
|
|
public static readonly AttachedProperty<bool> IsScrollChainingEnabledProperty =
|
|
AvaloniaProperty.RegisterAttached<ScrollViewer, Control, bool>(
|
|
nameof(IsScrollChainingEnabled),
|
|
defaultValue: true);
|
|
|
|
/// <summary>
|
|
/// Defines the <see cref="IsScrollInertiaEnabled"/> property.
|
|
/// </summary>
|
|
public static readonly AttachedProperty<bool> IsScrollInertiaEnabledProperty =
|
|
AvaloniaProperty.RegisterAttached<ScrollViewer, Control, bool>(
|
|
nameof(IsScrollInertiaEnabled),
|
|
defaultValue: true);
|
|
|
|
/// <summary>
|
|
/// Defines the <see cref="ScrollChanged"/> event.
|
|
/// </summary>
|
|
public static readonly RoutedEvent<ScrollChangedEventArgs> ScrollChangedEvent =
|
|
RoutedEvent.Register<ScrollViewer, ScrollChangedEventArgs>(
|
|
nameof(ScrollChanged),
|
|
RoutingStrategies.Bubble);
|
|
|
|
internal const double DefaultSmallChange = 16;
|
|
|
|
private IDisposable? _childSubscription;
|
|
private ILogicalScrollable? _logicalScrollable;
|
|
private Size _extent;
|
|
private Vector _offset;
|
|
private Size _viewport;
|
|
private Size _oldExtent;
|
|
private Vector _oldOffset;
|
|
private Size _oldViewport;
|
|
private Size _largeChange;
|
|
private Size _smallChange = new Size(DefaultSmallChange, DefaultSmallChange);
|
|
private bool _isExpanded;
|
|
private IDisposable? _scrollBarExpandSubscription;
|
|
|
|
/// <summary>
|
|
/// Initializes static members of the <see cref="ScrollViewer"/> class.
|
|
/// </summary>
|
|
static ScrollViewer()
|
|
{
|
|
HorizontalScrollBarVisibilityProperty.Changed.AddClassHandler<ScrollViewer, ScrollBarVisibility>((x, e) => x.ScrollBarVisibilityChanged(e));
|
|
VerticalScrollBarVisibilityProperty.Changed.AddClassHandler<ScrollViewer, ScrollBarVisibility>((x, e) => x.ScrollBarVisibilityChanged(e));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="ScrollViewer"/> class.
|
|
/// </summary>
|
|
public ScrollViewer()
|
|
{
|
|
LayoutUpdated += OnLayoutUpdated;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Occurs when changes are detected to the scroll position, extent, or viewport size.
|
|
/// </summary>
|
|
public event EventHandler<ScrollChangedEventArgs>? ScrollChanged
|
|
{
|
|
add => AddHandler(ScrollChangedEvent, value);
|
|
remove => RemoveHandler(ScrollChangedEvent, value);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets the extent of the scrollable content.
|
|
/// </summary>
|
|
public Size Extent
|
|
{
|
|
get
|
|
{
|
|
return _extent;
|
|
}
|
|
|
|
private set
|
|
{
|
|
if (SetAndRaise(ExtentProperty, ref _extent, value))
|
|
{
|
|
CalculatedPropertiesChanged();
|
|
}
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets or sets the current scroll offset.
|
|
/// </summary>
|
|
public Vector Offset
|
|
{
|
|
get
|
|
{
|
|
return _offset;
|
|
}
|
|
|
|
set
|
|
{
|
|
if (SetAndRaise(OffsetProperty, ref _offset, CoerceOffset(Extent, Viewport, value)))
|
|
{
|
|
CalculatedPropertiesChanged();
|
|
}
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets the size of the viewport on the scrollable content.
|
|
/// </summary>
|
|
public Size Viewport
|
|
{
|
|
get
|
|
{
|
|
return _viewport;
|
|
}
|
|
|
|
private set
|
|
{
|
|
if (SetAndRaise(ViewportProperty, ref _viewport, value))
|
|
{
|
|
CalculatedPropertiesChanged();
|
|
}
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets the large (page) change value for the scroll viewer.
|
|
/// </summary>
|
|
public Size LargeChange => _largeChange;
|
|
|
|
/// <summary>
|
|
/// Gets the small (line) change value for the scroll viewer.
|
|
/// </summary>
|
|
public Size SmallChange => _smallChange;
|
|
|
|
/// <summary>
|
|
/// Gets or sets the horizontal scrollbar visibility.
|
|
/// </summary>
|
|
public ScrollBarVisibility HorizontalScrollBarVisibility
|
|
{
|
|
get { return GetValue(HorizontalScrollBarVisibilityProperty); }
|
|
set { SetValue(HorizontalScrollBarVisibilityProperty, value); }
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets or sets the vertical scrollbar visibility.
|
|
/// </summary>
|
|
public ScrollBarVisibility VerticalScrollBarVisibility
|
|
{
|
|
get { return GetValue(VerticalScrollBarVisibilityProperty); }
|
|
set { SetValue(VerticalScrollBarVisibilityProperty, value); }
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets a value indicating whether the viewer can scroll horizontally.
|
|
/// </summary>
|
|
protected bool CanHorizontallyScroll
|
|
{
|
|
get { return HorizontalScrollBarVisibility != ScrollBarVisibility.Disabled; }
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets a value indicating whether the viewer can scroll vertically.
|
|
/// </summary>
|
|
protected bool CanVerticallyScroll
|
|
{
|
|
get { return VerticalScrollBarVisibility != ScrollBarVisibility.Disabled; }
|
|
}
|
|
|
|
/// <inheritdoc/>
|
|
public Control? CurrentAnchor => (Presenter as IScrollAnchorProvider)?.CurrentAnchor;
|
|
|
|
/// <summary>
|
|
/// Gets the maximum horizontal scrollbar value.
|
|
/// </summary>
|
|
protected double HorizontalScrollBarMaximum
|
|
{
|
|
get { return Max(_extent.Width - _viewport.Width, 0); }
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets or sets the horizontal scrollbar value.
|
|
/// </summary>
|
|
protected double HorizontalScrollBarValue
|
|
{
|
|
get { return _offset.X; }
|
|
set
|
|
{
|
|
if (_offset.X != value)
|
|
{
|
|
var old = Offset.X;
|
|
Offset = Offset.WithX(value);
|
|
RaisePropertyChanged(HorizontalScrollBarValueProperty, old, value);
|
|
}
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets the size of the horizontal scrollbar viewport.
|
|
/// </summary>
|
|
protected double HorizontalScrollBarViewportSize
|
|
{
|
|
get { return _viewport.Width; }
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets the maximum vertical scrollbar value.
|
|
/// </summary>
|
|
protected double VerticalScrollBarMaximum
|
|
{
|
|
get { return Max(_extent.Height - _viewport.Height, 0); }
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets or sets the vertical scrollbar value.
|
|
/// </summary>
|
|
protected double VerticalScrollBarValue
|
|
{
|
|
get { return _offset.Y; }
|
|
set
|
|
{
|
|
if (_offset.Y != value)
|
|
{
|
|
var old = Offset.Y;
|
|
Offset = Offset.WithY(value);
|
|
RaisePropertyChanged(VerticalScrollBarValueProperty, old, value);
|
|
}
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets the size of the vertical scrollbar viewport.
|
|
/// </summary>
|
|
protected double VerticalScrollBarViewportSize
|
|
{
|
|
get { return _viewport.Height; }
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets a value that indicates whether any scrollbar is expanded.
|
|
/// </summary>
|
|
public bool IsExpanded
|
|
{
|
|
get => _isExpanded;
|
|
private set => SetAndRaise(ScrollBar.IsExpandedProperty, ref _isExpanded, value);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets or sets how scroll gesture reacts to the snap points along the horizontal axis.
|
|
/// </summary>
|
|
public SnapPointsType HorizontalSnapPointsType
|
|
{
|
|
get => GetValue(HorizontalSnapPointsTypeProperty);
|
|
set => SetValue(HorizontalSnapPointsTypeProperty, value);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets or sets how scroll gesture reacts to the snap points along the vertical axis.
|
|
/// </summary>
|
|
public SnapPointsType VerticalSnapPointsType
|
|
{
|
|
get => GetValue(VerticalSnapPointsTypeProperty);
|
|
set => SetValue(VerticalSnapPointsTypeProperty, value);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets or sets how the existing snap points are horizontally aligned versus the initial viewport.
|
|
/// </summary>
|
|
public SnapPointsAlignment HorizontalSnapPointsAlignment
|
|
{
|
|
get => GetValue(HorizontalSnapPointsAlignmentProperty);
|
|
set => SetValue(HorizontalSnapPointsAlignmentProperty, value);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets or sets how the existing snap points are vertically aligned versus the initial viewport.
|
|
/// </summary>
|
|
public SnapPointsAlignment VerticalSnapPointsAlignment
|
|
{
|
|
get => GetValue(VerticalSnapPointsAlignmentProperty);
|
|
set => SetValue(VerticalSnapPointsAlignmentProperty, value);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets a value that indicates whether scrollbars can hide itself when user is not interacting with it.
|
|
/// </summary>
|
|
public bool AllowAutoHide
|
|
{
|
|
get => GetValue(AllowAutoHideProperty);
|
|
set => SetValue(AllowAutoHideProperty, value);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets or sets if scroll chaining is enabled. The default value is true.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// After a user hits a scroll limit on an element that has been nested within another scrollable element,
|
|
/// you can specify whether that parent element should continue the scrolling operation begun in its child element.
|
|
/// This is called scroll chaining.
|
|
/// </remarks>
|
|
public bool IsScrollChainingEnabled
|
|
{
|
|
get => GetValue(IsScrollChainingEnabledProperty);
|
|
set => SetValue(IsScrollChainingEnabledProperty, value);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets or sets whether scroll gestures should include inertia in their behavior and value.
|
|
/// </summary>
|
|
public bool IsScrollInertiaEnabled
|
|
{
|
|
get => GetValue(IsScrollInertiaEnabledProperty);
|
|
set => SetValue(IsScrollInertiaEnabledProperty, value);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Scrolls the content up one line.
|
|
/// </summary>
|
|
public void LineUp()
|
|
{
|
|
Offset -= new Vector(0, _smallChange.Height);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Scrolls the content down one line.
|
|
/// </summary>
|
|
public void LineDown()
|
|
{
|
|
Offset += new Vector(0, _smallChange.Height);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Scrolls the content left one line.
|
|
/// </summary>
|
|
public void LineLeft()
|
|
{
|
|
Offset -= new Vector(_smallChange.Width, 0);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Scrolls the content right one line.
|
|
/// </summary>
|
|
public void LineRight()
|
|
{
|
|
Offset += new Vector(_smallChange.Width, 0);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Scrolls the content upward by one page.
|
|
/// </summary>
|
|
public void PageUp()
|
|
{
|
|
VerticalScrollBarValue = Math.Max(_offset.Y - _viewport.Height, 0);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Scrolls the content downward by one page.
|
|
/// </summary>
|
|
public void PageDown()
|
|
{
|
|
VerticalScrollBarValue = Math.Min(_offset.Y + _viewport.Height, VerticalScrollBarMaximum);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Scrolls the content left by one page.
|
|
/// </summary>
|
|
public void PageLeft()
|
|
{
|
|
HorizontalScrollBarValue = Math.Max(_offset.X - _viewport.Width, 0);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Scrolls the content tight by one page.
|
|
/// </summary>
|
|
public void PageRight()
|
|
{
|
|
HorizontalScrollBarValue = Math.Min(_offset.X + _viewport.Width, HorizontalScrollBarMaximum);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Scrolls to the top-left corner of the content.
|
|
/// </summary>
|
|
public void ScrollToHome()
|
|
{
|
|
Offset = new Vector(double.NegativeInfinity, double.NegativeInfinity);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Scrolls to the bottom-left corner of the content.
|
|
/// </summary>
|
|
public void ScrollToEnd()
|
|
{
|
|
Offset = new Vector(double.NegativeInfinity, double.PositiveInfinity);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets the value of the HorizontalScrollBarVisibility attached property.
|
|
/// </summary>
|
|
/// <param name="control">The control to read the value from.</param>
|
|
/// <returns>The value of the property.</returns>
|
|
public static ScrollBarVisibility GetHorizontalScrollBarVisibility(Control control)
|
|
{
|
|
return control.GetValue(HorizontalScrollBarVisibilityProperty);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets the value of the HorizontalScrollBarVisibility attached property.
|
|
/// </summary>
|
|
/// <param name="control">The control to set the value on.</param>
|
|
/// <param name="value">The value of the property.</param>
|
|
public static void SetHorizontalScrollBarVisibility(Control control, ScrollBarVisibility value)
|
|
{
|
|
control.SetValue(HorizontalScrollBarVisibilityProperty, value);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets the value of the HorizontalSnapPointsType attached property.
|
|
/// </summary>
|
|
/// <param name="control">The control to read the value from.</param>
|
|
/// <returns>The value of the property.</returns>
|
|
public static SnapPointsType GetHorizontalSnapPointsType(Control control)
|
|
{
|
|
return control.GetValue(HorizontalSnapPointsTypeProperty);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets the value of the HorizontalSnapPointsType attached property.
|
|
/// </summary>
|
|
/// <param name="control">The control to set the value on.</param>
|
|
/// <param name="value">The value of the property.</param>
|
|
public static void SetHorizontalSnapPointsType(Control control, SnapPointsType value)
|
|
{
|
|
control.SetValue(HorizontalSnapPointsTypeProperty, value);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets the value of the VerticalSnapPointsType attached property.
|
|
/// </summary>
|
|
/// <param name="control">The control to read the value from.</param>
|
|
/// <returns>The value of the property.</returns>
|
|
public static SnapPointsType GetVerticalSnapPointsType(Control control)
|
|
{
|
|
return control.GetValue(VerticalSnapPointsTypeProperty);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets the value of the VerticalSnapPointsType attached property.
|
|
/// </summary>
|
|
/// <param name="control">The control to set the value on.</param>
|
|
/// <param name="value">The value of the property.</param>
|
|
public static void SetVerticalSnapPointsType(Control control, SnapPointsType value)
|
|
{
|
|
control.SetValue(VerticalSnapPointsTypeProperty, value);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets the value of the HorizontalSnapPointsAlignment attached property.
|
|
/// </summary>
|
|
/// <param name="control">The control to read the value from.</param>
|
|
/// <returns>The value of the property.</returns>
|
|
public static SnapPointsAlignment GetHorizontalSnapPointsAlignment(Control control)
|
|
{
|
|
return control.GetValue(HorizontalSnapPointsAlignmentProperty);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets the value of the HorizontalSnapPointsAlignment attached property.
|
|
/// </summary>
|
|
/// <param name="control">The control to set the value on.</param>
|
|
/// <param name="value">The value of the property.</param>
|
|
public static void SetHorizontalSnapPointsAlignment(Control control, SnapPointsAlignment value)
|
|
{
|
|
control.SetValue(HorizontalSnapPointsAlignmentProperty, value);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets the value of the VerticalSnapPointsAlignment attached property.
|
|
/// </summary>
|
|
/// <param name="control">The control to read the value from.</param>
|
|
/// <returns>The value of the property.</returns>
|
|
public static SnapPointsAlignment GetVerticalSnapPointsAlignment(Control control)
|
|
{
|
|
return control.GetValue(VerticalSnapPointsAlignmentProperty);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets the value of the VerticalSnapPointsAlignment attached property.
|
|
/// </summary>
|
|
/// <param name="control">The control to set the value on.</param>
|
|
/// <param name="value">The value of the property.</param>
|
|
public static void SetVerticalSnapPointsAlignment(Control control, SnapPointsAlignment value)
|
|
{
|
|
control.SetValue(VerticalSnapPointsAlignmentProperty, value);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets the value of the VerticalScrollBarVisibility attached property.
|
|
/// </summary>
|
|
/// <param name="control">The control to read the value from.</param>
|
|
/// <returns>The value of the property.</returns>
|
|
public static ScrollBarVisibility GetVerticalScrollBarVisibility(Control control)
|
|
{
|
|
return control.GetValue(VerticalScrollBarVisibilityProperty);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets the value of the AllowAutoHideProperty attached property.
|
|
/// </summary>
|
|
/// <param name="control">The control to set the value on.</param>
|
|
/// <param name="value">The value of the property.</param>
|
|
public static void SetAllowAutoHide(Control control, bool value)
|
|
{
|
|
control.SetValue(AllowAutoHideProperty, value);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets the value of the AllowAutoHideProperty attached property.
|
|
/// </summary>
|
|
/// <param name="control">The control to read the value from.</param>
|
|
/// <returns>The value of the property.</returns>
|
|
public static bool GetAllowAutoHide(Control control)
|
|
{
|
|
return control.GetValue(AllowAutoHideProperty);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Sets the value of the IsScrollChainingEnabled attached property.
|
|
/// </summary>
|
|
/// <param name="control">The control to set the value on.</param>
|
|
/// <param name="value">The value of the property.</param>
|
|
/// <remarks>
|
|
/// After a user hits a scroll limit on an element that has been nested within another scrollable element,
|
|
/// you can specify whether that parent element should continue the scrolling operation begun in its child element.
|
|
/// This is called scroll chaining.
|
|
/// </remarks>
|
|
public static void SetIsScrollChainingEnabled(Control control, bool value)
|
|
{
|
|
control.SetValue(IsScrollChainingEnabledProperty, value);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets the value of the IsScrollChainingEnabled attached property.
|
|
/// </summary>
|
|
/// <param name="control">The control to read the value from.</param>
|
|
/// <returns>The value of the property.</returns>
|
|
/// <remarks>
|
|
/// After a user hits a scroll limit on an element that has been nested within another scrollable element,
|
|
/// you can specify whether that parent element should continue the scrolling operation begun in its child element.
|
|
/// This is called scroll chaining.
|
|
/// </remarks>
|
|
public static bool GetIsScrollChainingEnabled(Control control)
|
|
{
|
|
return control.GetValue(IsScrollChainingEnabledProperty);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets the value of the VerticalScrollBarVisibility attached property.
|
|
/// </summary>
|
|
/// <param name="control">The control to set the value on.</param>
|
|
/// <param name="value">The value of the property.</param>
|
|
public static void SetVerticalScrollBarVisibility(Control control, ScrollBarVisibility value)
|
|
{
|
|
control.SetValue(VerticalScrollBarVisibilityProperty, value);
|
|
}
|
|
|
|
/// <inheritdoc/>
|
|
public void RegisterAnchorCandidate(Control element)
|
|
{
|
|
(Presenter as IScrollAnchorProvider)?.RegisterAnchorCandidate(element);
|
|
}
|
|
|
|
/// <inheritdoc/>
|
|
public void UnregisterAnchorCandidate(Control element)
|
|
{
|
|
(Presenter as IScrollAnchorProvider)?.UnregisterAnchorCandidate(element);
|
|
}
|
|
|
|
protected override bool RegisterContentPresenter(IContentPresenter presenter)
|
|
{
|
|
_childSubscription?.Dispose();
|
|
_childSubscription = null;
|
|
|
|
if (base.RegisterContentPresenter(presenter))
|
|
{
|
|
_childSubscription = ((Control?)Presenter)?
|
|
.GetObservable(ContentPresenter.ChildProperty)
|
|
.Subscribe(ChildChanged);
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
internal static Vector CoerceOffset(Size extent, Size viewport, Vector offset)
|
|
{
|
|
var maxX = Math.Max(extent.Width - viewport.Width, 0);
|
|
var maxY = Math.Max(extent.Height - viewport.Height, 0);
|
|
return new Vector(Clamp(offset.X, 0, maxX), Clamp(offset.Y, 0, maxY));
|
|
}
|
|
|
|
private static double Clamp(double value, double min, double max)
|
|
{
|
|
return (value < min) ? min : (value > max) ? max : value;
|
|
}
|
|
|
|
private static double Max(double x, double y)
|
|
{
|
|
var result = Math.Max(x, y);
|
|
return double.IsNaN(result) ? 0 : result;
|
|
}
|
|
|
|
private void ChildChanged(Control? child)
|
|
{
|
|
if (_logicalScrollable is object)
|
|
{
|
|
_logicalScrollable.ScrollInvalidated -= LogicalScrollInvalidated;
|
|
_logicalScrollable = null;
|
|
}
|
|
|
|
if (child is ILogicalScrollable logical)
|
|
{
|
|
_logicalScrollable = logical;
|
|
logical.ScrollInvalidated += LogicalScrollInvalidated;
|
|
}
|
|
|
|
CalculatedPropertiesChanged();
|
|
}
|
|
|
|
private void LogicalScrollInvalidated(object? sender, EventArgs e)
|
|
{
|
|
CalculatedPropertiesChanged();
|
|
}
|
|
|
|
private void ScrollBarVisibilityChanged(AvaloniaPropertyChangedEventArgs<ScrollBarVisibility> e)
|
|
{
|
|
var wasEnabled = e.OldValue.GetValueOrDefault() != ScrollBarVisibility.Disabled;
|
|
var isEnabled = e.NewValue.GetValueOrDefault() != ScrollBarVisibility.Disabled;
|
|
|
|
if (wasEnabled != isEnabled)
|
|
{
|
|
if (e.Property == HorizontalScrollBarVisibilityProperty)
|
|
{
|
|
RaisePropertyChanged(
|
|
CanHorizontallyScrollProperty,
|
|
wasEnabled,
|
|
isEnabled);
|
|
}
|
|
else if (e.Property == VerticalScrollBarVisibilityProperty)
|
|
{
|
|
RaisePropertyChanged(
|
|
CanVerticallyScrollProperty,
|
|
wasEnabled,
|
|
isEnabled);
|
|
}
|
|
}
|
|
}
|
|
|
|
private void CalculatedPropertiesChanged()
|
|
{
|
|
// Pass old values of 0 here because we don't have the old values at this point,
|
|
// and it shouldn't matter as only the template uses these properties.
|
|
RaisePropertyChanged(HorizontalScrollBarMaximumProperty, 0, HorizontalScrollBarMaximum);
|
|
RaisePropertyChanged(HorizontalScrollBarValueProperty, 0, HorizontalScrollBarValue);
|
|
RaisePropertyChanged(HorizontalScrollBarViewportSizeProperty, 0, HorizontalScrollBarViewportSize);
|
|
RaisePropertyChanged(VerticalScrollBarMaximumProperty, 0, VerticalScrollBarMaximum);
|
|
RaisePropertyChanged(VerticalScrollBarValueProperty, 0, VerticalScrollBarValue);
|
|
RaisePropertyChanged(VerticalScrollBarViewportSizeProperty, 0, VerticalScrollBarViewportSize);
|
|
|
|
if (_logicalScrollable?.IsLogicalScrollEnabled == true)
|
|
{
|
|
SetAndRaise(SmallChangeProperty, ref _smallChange, _logicalScrollable.ScrollSize);
|
|
SetAndRaise(LargeChangeProperty, ref _largeChange, _logicalScrollable.PageScrollSize);
|
|
}
|
|
else
|
|
{
|
|
SetAndRaise(SmallChangeProperty, ref _smallChange, new Size(DefaultSmallChange, DefaultSmallChange));
|
|
SetAndRaise(LargeChangeProperty, ref _largeChange, Viewport);
|
|
}
|
|
}
|
|
|
|
protected override void OnKeyDown(KeyEventArgs e)
|
|
{
|
|
if (e.Key == Key.PageUp)
|
|
{
|
|
PageUp();
|
|
e.Handled = true;
|
|
}
|
|
else if (e.Key == Key.PageDown)
|
|
{
|
|
PageDown();
|
|
e.Handled = true;
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Called when a change in scrolling state is detected, such as a change in scroll
|
|
/// position, extent, or viewport size.
|
|
/// </summary>
|
|
/// <param name="e">The event args.</param>
|
|
/// <remarks>
|
|
/// If you override this method, call `base.OnScrollChanged(ScrollChangedEventArgs)` to
|
|
/// ensure that this event is raised.
|
|
/// </remarks>
|
|
protected virtual void OnScrollChanged(ScrollChangedEventArgs e)
|
|
{
|
|
RaiseEvent(e);
|
|
}
|
|
|
|
protected override void OnApplyTemplate(TemplateAppliedEventArgs e)
|
|
{
|
|
base.OnApplyTemplate(e);
|
|
|
|
_scrollBarExpandSubscription?.Dispose();
|
|
|
|
_scrollBarExpandSubscription = SubscribeToScrollBars(e);
|
|
}
|
|
|
|
protected override AutomationPeer OnCreateAutomationPeer()
|
|
{
|
|
return new ScrollViewerAutomationPeer(this);
|
|
}
|
|
|
|
private IDisposable? SubscribeToScrollBars(TemplateAppliedEventArgs e)
|
|
{
|
|
static IObservable<bool>? GetExpandedObservable(ScrollBar? scrollBar)
|
|
{
|
|
return scrollBar?.GetObservable(ScrollBar.IsExpandedProperty);
|
|
}
|
|
|
|
var horizontalScrollBar = e.NameScope.Find<ScrollBar>("PART_HorizontalScrollBar");
|
|
var verticalScrollBar = e.NameScope.Find<ScrollBar>("PART_VerticalScrollBar");
|
|
|
|
var horizontalExpanded = GetExpandedObservable(horizontalScrollBar);
|
|
var verticalExpanded = GetExpandedObservable(verticalScrollBar);
|
|
|
|
IObservable<bool>? actualExpanded = null;
|
|
|
|
if (horizontalExpanded != null && verticalExpanded != null)
|
|
{
|
|
actualExpanded = horizontalExpanded.CombineLatest(verticalExpanded, (h, v) => h || v);
|
|
}
|
|
else
|
|
{
|
|
if (horizontalExpanded != null)
|
|
{
|
|
actualExpanded = horizontalExpanded;
|
|
}
|
|
else if (verticalExpanded != null)
|
|
{
|
|
actualExpanded = verticalExpanded;
|
|
}
|
|
}
|
|
|
|
return actualExpanded?.Subscribe(OnScrollBarExpandedChanged);
|
|
}
|
|
|
|
private void OnScrollBarExpandedChanged(bool isExpanded)
|
|
{
|
|
IsExpanded = isExpanded;
|
|
}
|
|
|
|
private void OnLayoutUpdated(object? sender, EventArgs e) => RaiseScrollChanged();
|
|
|
|
private void RaiseScrollChanged()
|
|
{
|
|
var extentDelta = new Vector(Extent.Width - _oldExtent.Width, Extent.Height - _oldExtent.Height);
|
|
var offsetDelta = Offset - _oldOffset;
|
|
var viewportDelta = new Vector(Viewport.Width - _oldViewport.Width, Viewport.Height - _oldViewport.Height);
|
|
|
|
if (!extentDelta.NearlyEquals(default) || !offsetDelta.NearlyEquals(default) || !viewportDelta.NearlyEquals(default))
|
|
{
|
|
var e = new ScrollChangedEventArgs(extentDelta, offsetDelta, viewportDelta);
|
|
OnScrollChanged(e);
|
|
|
|
_oldExtent = Extent;
|
|
_oldOffset = Offset;
|
|
_oldViewport = Viewport;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|