using System;
using System.Collections.Immutable;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Observatory.Framework
{
///
/// Specifies text to display as the name of the setting in the UI instead of the property name.
///
[AttributeUsage(AttributeTargets.Property | AttributeTargets.Field)]
public class SettingDisplayName : Attribute
{
private string name;
///
/// Specifies text to display as the name of the setting in the UI instead of the property name.
///
/// Name to display
public SettingDisplayName(string name)
{
this.name = name;
}
///
/// Accessor to get/set displayed name.
///
public string DisplayName
{
get => name;
set => name = value;
}
}
///
/// Suggests default column width when building basic UI
///
[AttributeUsage(AttributeTargets.Property | AttributeTargets.Field)]
public class ColumnSuggestedWidth : Attribute
{
public ColumnSuggestedWidth(int width)
{
Width = width;
}
public int Width { get; }
}
///
/// Indicates that the property should not be displayed to the user in the UI.
///
[AttributeUsage(AttributeTargets.Property | AttributeTargets.Field)]
public class SettingIgnore : Attribute
{ }
///
/// Indicates numeric properly should use a slider control instead of a numeric textbox with roller.
///
[AttributeUsage(AttributeTargets.Property | AttributeTargets.Field)]
public class SettingNumericUseSlider : Attribute
{ }
///
/// Specify backing value used by Dictionary<string, object> to indicate selected option.
///
[AttributeUsage(AttributeTargets.Property | AttributeTargets.Field)]
public class SettingBackingValue : Attribute
{
private string property;
///
/// Specify backing value used by Dictionary<string, object> to indicate selected option.
///
/// Property name for backing value.
public SettingBackingValue(string property)
{
this.property = property;
}
///
/// Accessor to get/set backing value property name.
///
public string BackingProperty
{
get => property;
set => property = value;
}
}
///
/// Specify bounds for numeric inputs.
///
[AttributeUsage(AttributeTargets.Property | AttributeTargets.Field)]
public class SettingNumericBounds : Attribute
{
private double minimum;
private double maximum;
private double increment;
///
/// Specify bounds for numeric inputs.
///
/// Minimum allowed value.
/// Maximum allowed value.
/// Increment between allowed values in slider/roller inputs.
public SettingNumericBounds(double minimum, double maximum, double increment = 1.0)
{
this.minimum = minimum;
this.maximum = maximum;
this.increment = increment;
}
///
/// Minimum allowed value.
///
public double Minimum
{
get => minimum;
set => minimum = value;
}
///
/// Maxunyn allowed value.
///
public double Maximum
{
get => maximum;
set => maximum = value;
}
///
/// Increment between allowed values in slider/roller inputs.
///
public double Increment
{
get => increment;
set => increment = value;
}
}
}