using System; using System.Collections.Immutable; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Observatory.Framework { #region Settings class attributes /// /// Specifies the width of a settings column in the settings view. There are two columns. /// [AttributeUsage(AttributeTargets.Class, AllowMultiple = false)] public class SettingSuggestedColumnWidth : Attribute { /// /// Specifies the width of a settings column in the settings view. There are two columns. /// /// Provides a hint of the width of a settings column. public SettingSuggestedColumnWidth(int width) { Width = width; } /// /// Provides a hint of the width of a settings column. /// public int Width { get; } } #endregion #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; } } /// /// Starts a new visual group of settings beginning with the current setting with an optional label. /// [AttributeUsage(AttributeTargets.Property | AttributeTargets.Field)] public class SettingNewGroup : Attribute { /// /// Starts a new visual group of settings beginning with the current setting with an optional label. /// /// An optional label describing the group. public SettingNewGroup(string label = "") { Label = label; } /// /// An optional label describing the group. /// public string Label { 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; 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 #region BasicUI attributes /// /// Suggests default column width when building basic plugin grid UI. /// [AttributeUsage(AttributeTargets.Property | AttributeTargets.Field)] public class ColumnSuggestedWidth : Attribute { /// /// Suggests default column width when building basic plugin grid UI. /// /// The suggested width of the annotated column. public ColumnSuggestedWidth(int width) { Width = width; } /// /// The suggested width of the annotated column. /// public int Width { get; } } #endregion }