mirror of
https://github.com/Ellpeck/MLEM.git
synced 2024-11-01 05:10:50 +01:00
42 lines
No EOL
988 B
C#
42 lines
No EOL
988 B
C#
using System.Collections.Generic;
|
|
|
|
namespace MLEM.Ui.Style {
|
|
public struct StyleProp<T> {
|
|
|
|
public T Value { get; private set; }
|
|
private bool isCustom;
|
|
|
|
public StyleProp(T value) {
|
|
this.isCustom = true;
|
|
this.Value = value;
|
|
}
|
|
|
|
public void SetFromStyle(T value) {
|
|
if (!this.isCustom) {
|
|
this.Value = value;
|
|
}
|
|
}
|
|
|
|
public void Set(T value) {
|
|
this.isCustom = true;
|
|
this.Value = value;
|
|
}
|
|
|
|
public T OrDefault(T def) {
|
|
return this.HasValue() ? this.Value : def;
|
|
}
|
|
|
|
public bool HasValue() {
|
|
return !EqualityComparer<T>.Default.Equals(this.Value, default);
|
|
}
|
|
|
|
public static implicit operator T(StyleProp<T> prop) {
|
|
return prop.Value;
|
|
}
|
|
|
|
public static implicit operator StyleProp<T>(T prop) {
|
|
return new StyleProp<T>(prop);
|
|
}
|
|
|
|
}
|
|
} |