namespace Observatory.Framework;
#region Setting property attributes
///
/// 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;
}
}
///
/// 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 bounds for numeric inputs.
///
[AttributeUsage(AttributeTargets.Property | AttributeTargets.Field)]
public class SettingNumericBounds : Attribute
{
private double minimum;
private double maximum;
private double increment;
private int precision;
///
/// Specify bounds for numeric inputs.
///
/// Minimum allowed value.
/// Maximum allowed value.
/// Increment between allowed values in slider/roller inputs.
/// The number of digits to display for non integer values.
public SettingNumericBounds(double minimum, double maximum, double increment = 1.0, int precision = 1)
{
this.minimum = minimum;
this.maximum = maximum;
this.increment = increment;
this.precision = precision;
}
///
/// Minimum allowed value.
///
public double Minimum
{
get => minimum;
set => minimum = value;
}
///
/// Maximum 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;
}
///
/// The number of digits to display for non integer values.
///
public int Precision
{
get => precision;
set => precision = value;
}
}
#endregion