mirror of
https://github.com/Ellpeck/MLEM.git
synced 2024-11-27 06:58:34 +01:00
Compare commits
No commits in common. "f8aae9f5c2c465aa1a04ba73f6b17bba69dcbfba" and "e4e7191d8ddf6afd3d806b1af80c0be7e96a923d" have entirely different histories.
f8aae9f5c2
...
e4e7191d8d
3 changed files with 4 additions and 74 deletions
|
@ -2,8 +2,7 @@
|
|||
MLEM tries to adhere to [semantic versioning](https://semver.org/). Potentially breaking changes are written in **bold**.
|
||||
|
||||
Jump to version:
|
||||
- [6.3.0](#630-in-development)
|
||||
- [6.2.0](#620)
|
||||
- [6.2.0](#620-in-development)
|
||||
- [6.1.0](#610)
|
||||
- [6.0.0](#600)
|
||||
- [5.3.0](#530)
|
||||
|
@ -11,9 +10,7 @@ Jump to version:
|
|||
- [5.1.0](#510)
|
||||
- [5.0.0](#500)
|
||||
|
||||
## 6.3.0 (In Development)
|
||||
|
||||
## 6.2.0
|
||||
## 6.2.0 (In Development)
|
||||
|
||||
### MLEM
|
||||
Additions
|
||||
|
@ -46,7 +43,6 @@ Additions
|
|||
- Added AddCustomStyle and ApplyCustomStyle to UiStyle to allow for easy custom styling of elements
|
||||
- Added UiControls.PressElement
|
||||
- Added TextField.EnterReceiver
|
||||
- Added a copy constructor to UiStyle
|
||||
|
||||
Improvements
|
||||
- Increased Element area calculation recursion limit to 64
|
||||
|
|
|
@ -236,72 +236,6 @@ namespace MLEM.Ui.Style {
|
|||
|
||||
private readonly Dictionary<Type, Action<Element>> elementStyles = new Dictionary<Type, Action<Element>>();
|
||||
|
||||
/// <summary>
|
||||
/// Creates a new set of style settings with the default values.
|
||||
/// </summary>
|
||||
public UiStyle() {}
|
||||
|
||||
/// <summary>
|
||||
/// Creates a new set of style settings with values inherited from the given <paramref name="original"/> style settings.
|
||||
/// </summary>
|
||||
/// <param name="original">The original style settings, to copy into the new instance.</param>
|
||||
public UiStyle(UiStyle original) {
|
||||
this.SelectionIndicator = original.SelectionIndicator;
|
||||
this.MouseEnterAnimation = original.MouseEnterAnimation;
|
||||
this.MouseExitAnimation = original.MouseExitAnimation;
|
||||
this.ButtonTexture = original.ButtonTexture;
|
||||
this.ButtonHoveredTexture = original.ButtonHoveredTexture;
|
||||
this.ButtonHoveredColor = original.ButtonHoveredColor;
|
||||
this.ButtonDisabledTexture = original.ButtonDisabledTexture;
|
||||
this.ButtonDisabledColor = original.ButtonDisabledColor;
|
||||
this.PanelTexture = original.PanelTexture;
|
||||
this.PanelColor = original.PanelColor;
|
||||
this.PanelChildPadding = original.PanelChildPadding;
|
||||
this.PanelStepPerScroll = original.PanelStepPerScroll;
|
||||
this.PanelScrollerSize = original.PanelScrollerSize;
|
||||
this.PanelScrollBarOffset = original.PanelScrollBarOffset;
|
||||
this.TextFieldTexture = original.TextFieldTexture;
|
||||
this.TextFieldHoveredTexture = original.TextFieldHoveredTexture;
|
||||
this.TextFieldHoveredColor = original.TextFieldHoveredColor;
|
||||
this.TextFieldTextOffsetX = original.TextFieldTextOffsetX;
|
||||
this.TextFieldCaretWidth = original.TextFieldCaretWidth;
|
||||
this.ScrollBarBackground = original.ScrollBarBackground;
|
||||
this.ScrollBarScrollerTexture = original.ScrollBarScrollerTexture;
|
||||
this.ScrollBarSmoothScrolling = original.ScrollBarSmoothScrolling;
|
||||
this.ScrollBarSmoothScrollFactor = original.ScrollBarSmoothScrollFactor;
|
||||
this.CheckboxTexture = original.CheckboxTexture;
|
||||
this.CheckboxHoveredTexture = original.CheckboxHoveredTexture;
|
||||
this.CheckboxHoveredColor = original.CheckboxHoveredColor;
|
||||
this.CheckboxDisabledTexture = original.CheckboxDisabledTexture;
|
||||
this.CheckboxDisabledColor = original.CheckboxDisabledColor;
|
||||
this.CheckboxCheckmark = original.CheckboxCheckmark;
|
||||
this.CheckboxTextOffsetX = original.CheckboxTextOffsetX;
|
||||
this.RadioTexture = original.RadioTexture;
|
||||
this.RadioHoveredTexture = original.RadioHoveredTexture;
|
||||
this.RadioHoveredColor = original.RadioHoveredColor;
|
||||
this.RadioCheckmark = original.RadioCheckmark;
|
||||
this.TooltipBackground = original.TooltipBackground;
|
||||
this.TooltipOffset = original.TooltipOffset;
|
||||
this.TooltipAutoNavOffset = original.TooltipAutoNavOffset;
|
||||
this.TooltipTextColor = original.TooltipTextColor;
|
||||
this.TooltipDelay = original.TooltipDelay;
|
||||
this.TooltipTextWidth = original.TooltipTextWidth;
|
||||
this.TooltipChildPadding = original.TooltipChildPadding;
|
||||
this.ProgressBarTexture = original.ProgressBarTexture;
|
||||
this.ProgressBarColor = original.ProgressBarColor;
|
||||
this.ProgressBarProgressPadding = original.ProgressBarProgressPadding;
|
||||
this.ProgressBarProgressTexture = original.ProgressBarProgressTexture;
|
||||
this.ProgressBarProgressColor = original.ProgressBarProgressColor;
|
||||
this.Font = original.Font;
|
||||
this.TextScale = original.TextScale;
|
||||
this.TextColor = original.TextColor;
|
||||
this.TextAlignment = original.TextAlignment;
|
||||
this.ActionSound = original.ActionSound;
|
||||
this.LinkColor = original.LinkColor;
|
||||
this.AdditionalFonts = new Dictionary<string, GenericFont>(original.AdditionalFonts);
|
||||
this.elementStyles = new Dictionary<Type, Action<Element>>(original.elementStyles);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Adds an action to the given <see cref="Element"/> type <typeparamref name="T"/> that allows applying any kind of custom styling or behavior to it.
|
||||
/// Custom styles added in this manner can be applied to an element using <see cref="ApplyCustomStyle"/>.
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
#addin nuget:?package=Cake.DocFx&version=1.0.0
|
||||
#tool dotnet:?package=docfx&version=2.67.5
|
||||
#tool dotnet:?package=docfx&version=2.67.3
|
||||
|
||||
// this is the upcoming version, for prereleases
|
||||
var version = Argument("version", "6.3.0");
|
||||
var version = Argument("version", "6.2.0");
|
||||
var target = Argument("target", "Default");
|
||||
var branch = Argument("branch", "main");
|
||||
var config = Argument("configuration", "Release");
|
||||
|
|
Loading…
Reference in a new issue