mirror of
https://github.com/riegera2412/UVtools.git
synced 2026-07-08 17:42:31 +02:00
89 lines
3.3 KiB
C#
89 lines
3.3 KiB
C#
/*
|
|
* GNU AFFERO GENERAL PUBLIC LICENSE
|
|
* Version 3, 19 November 2007
|
|
* Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
|
|
* Everyone is permitted to copy and distribute verbatim copies
|
|
* of this license document, but changing it is not allowed.
|
|
*/
|
|
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Runtime.CompilerServices;
|
|
|
|
namespace UVtools.Core.Objects
|
|
{
|
|
/// <summary>
|
|
/// Implementation of <see cref="INotifyPropertyChanged" /> to simplify models.
|
|
/// </summary>
|
|
public abstract class BindableBase : INotifyPropertyChanged
|
|
{
|
|
/// <summary>
|
|
/// Multicast event for property change notifications.
|
|
/// </summary>
|
|
private PropertyChangedEventHandler _propertyChanged;
|
|
private List<string> events = new List<string>();
|
|
|
|
public event PropertyChangedEventHandler PropertyChanged
|
|
{
|
|
add { _propertyChanged += value; events.Add("added"); }
|
|
remove { _propertyChanged -= value; events.Add("removed"); }
|
|
}
|
|
|
|
/// <summary>
|
|
/// Checks if a property already matches a desired value. Sets the property and
|
|
/// notifies listeners only when necessary.
|
|
/// </summary>
|
|
/// <typeparam name="T">Type of the property.</typeparam>
|
|
/// <param name="storage">Reference to a property with both getter and setter.</param>
|
|
/// <param name="value">Desired value for the property.</param>
|
|
/// <param name="propertyName">
|
|
/// Name of the property used to notify listeners. This
|
|
/// value is optional and can be provided automatically when invoked from compilers that
|
|
/// support CallerMemberName.
|
|
/// </param>
|
|
/// <returns>
|
|
/// True if the value was changed, false if the existing value matched the
|
|
/// desired value.
|
|
/// </returns>
|
|
/*protected bool SetProperty<T>(ref T storage, T value, [CallerMemberName] string propertyName = null)
|
|
{
|
|
if (Equals(storage, value))
|
|
{
|
|
return false;
|
|
}
|
|
|
|
storage = value;
|
|
RaisePropertyChanged(propertyName);
|
|
return true;
|
|
}*/
|
|
|
|
protected bool RaiseAndSetIfChanged<T>(ref T field, T value, [CallerMemberName] string propertyName = null)
|
|
{
|
|
if (EqualityComparer<T>.Default.Equals(field, value)) return false;
|
|
field = value;
|
|
RaisePropertyChanged(propertyName);
|
|
return true;
|
|
}
|
|
|
|
|
|
protected virtual void OnPropertyChanged(PropertyChangedEventArgs e)
|
|
{
|
|
}
|
|
|
|
/// <summary>
|
|
/// Notifies listeners that a property value has changed.
|
|
/// </summary>
|
|
/// <param name="propertyName">
|
|
/// Name of the property used to notify listeners. This
|
|
/// value is optional and can be provided automatically when invoked from compilers
|
|
/// that support <see cref="CallerMemberNameAttribute" />.
|
|
/// </param>
|
|
protected void RaisePropertyChanged([CallerMemberName] string propertyName = null)
|
|
{
|
|
var e = new PropertyChangedEventArgs(propertyName);
|
|
OnPropertyChanged(e);
|
|
_propertyChanged?.Invoke(this, e);
|
|
}
|
|
}
|
|
}
|