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.
123 lines
3.3 KiB
123 lines
3.3 KiB
// Copyright (c) The Avalonia Project. All rights reserved.
|
|
// Licensed under the MIT license. See licence.md file in the project root for full license information.
|
|
|
|
using System;
|
|
using Avalonia.Data;
|
|
|
|
namespace Avalonia
|
|
{
|
|
/// <summary>
|
|
/// A registered binding in a <see cref="PriorityValue"/>.
|
|
/// </summary>
|
|
internal class PriorityBindingEntry : IDisposable
|
|
{
|
|
private PriorityLevel _owner;
|
|
private IDisposable _subscription;
|
|
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="PriorityBindingEntry"/> class.
|
|
/// </summary>
|
|
/// <param name="owner">The owner.</param>
|
|
/// <param name="index">
|
|
/// The binding index. Later bindings should have higher indexes.
|
|
/// </param>
|
|
/// <param name="validation">The validation settings for the binding.</param>
|
|
public PriorityBindingEntry(PriorityLevel owner, int index)
|
|
{
|
|
_owner = owner;
|
|
Index = index;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets the observable associated with the entry.
|
|
/// </summary>
|
|
public IObservable<object> Observable { get; private set; }
|
|
|
|
/// <summary>
|
|
/// Gets a description of the binding.
|
|
/// </summary>
|
|
public string Description
|
|
{
|
|
get;
|
|
private set;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets the binding entry index. Later bindings will have higher indexes.
|
|
/// </summary>
|
|
public int Index
|
|
{
|
|
get;
|
|
}
|
|
|
|
/// <summary>
|
|
/// The current value of the binding.
|
|
/// </summary>
|
|
public object Value
|
|
{
|
|
get;
|
|
private set;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Starts listening to the binding.
|
|
/// </summary>
|
|
/// <param name="binding">The binding.</param>
|
|
public void Start(IObservable<object> binding)
|
|
{
|
|
Contract.Requires<ArgumentNullException>(binding != null);
|
|
|
|
if (_subscription != null)
|
|
{
|
|
throw new Exception("PriorityValue.Entry.Start() called more than once.");
|
|
}
|
|
|
|
Observable = binding;
|
|
Value = AvaloniaProperty.UnsetValue;
|
|
|
|
if (binding is IDescription)
|
|
{
|
|
Description = ((IDescription)binding).Description;
|
|
}
|
|
|
|
_subscription = binding.Subscribe(ValueChanged, Completed);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Ends the binding subscription.
|
|
/// </summary>
|
|
public void Dispose()
|
|
{
|
|
_subscription?.Dispose();
|
|
}
|
|
|
|
private void ValueChanged(object value)
|
|
{
|
|
var notification = value as BindingNotification;
|
|
|
|
if (notification != null)
|
|
{
|
|
if (notification.HasValue)
|
|
{
|
|
Value = notification.Value;
|
|
_owner.Changed(this);
|
|
}
|
|
|
|
if (notification.ErrorType != BindingErrorType.None)
|
|
{
|
|
_owner.Error(this, notification);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
Value = value;
|
|
_owner.Changed(this);
|
|
}
|
|
}
|
|
|
|
private void Completed()
|
|
{
|
|
_owner.Completed(this);
|
|
}
|
|
}
|
|
}
|
|
|