2019-08-13 21:23:20 +02:00
|
|
|
using Microsoft.Xna.Framework;
|
|
|
|
using Microsoft.Xna.Framework.Graphics;
|
|
|
|
using MLEM.Extensions;
|
|
|
|
using MLEM.Input;
|
2019-11-02 14:53:59 +01:00
|
|
|
using MLEM.Misc;
|
2019-08-13 21:23:20 +02:00
|
|
|
using MLEM.Textures;
|
|
|
|
using MLEM.Ui.Style;
|
|
|
|
|
|
|
|
namespace MLEM.Ui.Elements {
|
|
|
|
public class Checkbox : Element {
|
|
|
|
|
2019-10-14 21:28:12 +02:00
|
|
|
public StyleProp<NinePatch> Texture;
|
|
|
|
public StyleProp<NinePatch> HoveredTexture;
|
|
|
|
public StyleProp<Color> HoveredColor;
|
|
|
|
public StyleProp<TextureRegion> Checkmark;
|
2019-08-13 21:23:20 +02:00
|
|
|
public Paragraph Label;
|
2019-08-24 00:07:54 +02:00
|
|
|
public float TextOffsetX = 2;
|
2019-08-13 21:23:20 +02:00
|
|
|
|
|
|
|
private bool checced;
|
|
|
|
public bool Checked {
|
|
|
|
get => this.checced;
|
|
|
|
set {
|
|
|
|
if (this.checced != value) {
|
|
|
|
this.checced = value;
|
|
|
|
this.OnCheckStateChange?.Invoke(this, this.checced);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
public CheckStateChange OnCheckStateChange;
|
|
|
|
|
|
|
|
public Checkbox(Anchor anchor, Vector2 size, string label, bool defaultChecked = false) : base(anchor, size) {
|
|
|
|
this.checced = defaultChecked;
|
2019-08-25 21:49:27 +02:00
|
|
|
this.OnPressed += element => this.Checked = !this.Checked;
|
2019-08-13 21:23:20 +02:00
|
|
|
|
|
|
|
if (label != null) {
|
2019-08-24 00:07:54 +02:00
|
|
|
this.Label = new Paragraph(Anchor.CenterLeft, 0, label);
|
2019-08-13 21:23:20 +02:00
|
|
|
this.AddChild(this.Label);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-02 14:53:59 +01:00
|
|
|
protected override Vector2 CalcActualSize(RectangleF parentArea) {
|
2019-08-13 21:23:20 +02:00
|
|
|
var size = base.CalcActualSize(parentArea);
|
2019-08-24 00:07:54 +02:00
|
|
|
if (this.Label != null) {
|
|
|
|
this.Label.Size = new Vector2((size.X - size.Y) / this.Scale - this.TextOffsetX, 1);
|
|
|
|
this.Label.PositionOffset = new Vector2(size.Y / this.Scale + this.TextOffsetX, 0);
|
|
|
|
}
|
2019-08-13 21:23:20 +02:00
|
|
|
return size;
|
|
|
|
}
|
|
|
|
|
2019-09-20 13:22:05 +02:00
|
|
|
public override void Draw(GameTime time, SpriteBatch batch, float alpha, BlendState blendState, SamplerState samplerState, Matrix matrix) {
|
2019-08-13 21:23:20 +02:00
|
|
|
var tex = this.Texture;
|
|
|
|
var color = Color.White * alpha;
|
|
|
|
if (this.IsMouseOver) {
|
2019-11-05 13:28:41 +01:00
|
|
|
tex = this.HoveredTexture.OrDefault(tex);
|
2019-10-14 21:28:12 +02:00
|
|
|
color = (Color) this.HoveredColor * alpha;
|
2019-08-13 21:23:20 +02:00
|
|
|
}
|
|
|
|
|
2019-11-02 14:53:59 +01:00
|
|
|
var boxDisplayArea = new RectangleF(this.DisplayArea.Location, new Vector2(this.DisplayArea.Height));
|
2019-08-13 21:23:20 +02:00
|
|
|
batch.Draw(tex, boxDisplayArea, color, this.Scale);
|
|
|
|
if (this.Checked)
|
|
|
|
batch.Draw(this.Checkmark, boxDisplayArea, Color.White * alpha);
|
2019-09-20 13:22:05 +02:00
|
|
|
base.Draw(time, batch, alpha, blendState, samplerState, matrix);
|
2019-08-13 21:23:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected override void InitStyle(UiStyle style) {
|
|
|
|
base.InitStyle(style);
|
2019-10-14 21:28:12 +02:00
|
|
|
this.Texture.SetFromStyle(style.CheckboxTexture);
|
|
|
|
this.HoveredTexture.SetFromStyle(style.CheckboxHoveredTexture);
|
|
|
|
this.HoveredColor.SetFromStyle(style.CheckboxHoveredColor);
|
|
|
|
this.Checkmark.SetFromStyle(style.CheckboxCheckmark);
|
2019-08-13 21:23:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public delegate void CheckStateChange(Checkbox box, bool checced);
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|