Files
MonoGame.Extended/Source/MonoGame.Extended.Gui/Controls/Button.cs
T
2018-03-18 21:32:33 +10:00

186 lines
4.8 KiB
C#

using System;
namespace MonoGame.Extended.Gui.Controls
{
public class ToggleButton : Button
{
public ToggleButton()
{
}
public event EventHandler CheckedStateChanged;
private bool _isChecked;
public bool IsChecked
{
get { return _isChecked; }
set
{
if (_isChecked != value)
{
_isChecked = value;
CheckedStyle?.ApplyIf(this, _isChecked);
CheckedStateChanged?.Invoke(this, EventArgs.Empty);
}
}
}
private ControlStyle _checkedStyle;
public ControlStyle CheckedStyle
{
get { return _checkedStyle; }
set
{
if (_checkedStyle != value)
{
_checkedStyle = value;
CheckedStyle?.ApplyIf(this, _isChecked);
}
}
}
private ControlStyle _checkedHoverStyle;
public ControlStyle CheckedHoverStyle
{
get { return _checkedHoverStyle; }
set
{
if (_checkedHoverStyle != value)
{
_checkedHoverStyle = value;
CheckedHoverStyle?.ApplyIf(this, _isChecked && IsHovered);
}
}
}
public override bool OnPointerUp(IGuiContext context, PointerEventArgs args)
{
base.OnPointerUp(context, args);
if (IsFocused && BoundingRectangle.Contains(args.Position))
{
HoverStyle?.Revert(this);
CheckedHoverStyle?.Revert(this);
IsChecked = !IsChecked;
if (IsChecked)
CheckedHoverStyle?.Apply(this);
else
HoverStyle?.Apply(this);
}
return true;
}
public override bool OnPointerEnter(IGuiContext context, PointerEventArgs args)
{
if (IsChecked)
{
CheckedHoverStyle?.Apply(this);
return true;
}
return base.OnPointerEnter(context, args);
}
public override bool OnPointerLeave(IGuiContext context, PointerEventArgs args)
{
if (IsChecked)
{
CheckedHoverStyle?.Revert(this);
return true;
}
return base.OnPointerLeave(context, args);
}
}
public class Button : ContentControl
{
public Button()
{
}
public event EventHandler Clicked;
public event EventHandler PressedStateChanged;
private bool _isPressed;
public bool IsPressed
{
get { return _isPressed; }
set
{
if (_isPressed != value)
{
_isPressed = value;
PressedStyle?.ApplyIf(this, _isPressed);
PressedStateChanged?.Invoke(this, EventArgs.Empty);
}
}
}
private ControlStyle _pressedStyle;
public ControlStyle PressedStyle
{
get { return _pressedStyle; }
set
{
if (_pressedStyle != value)
{
_pressedStyle = value;
PressedStyle?.ApplyIf(this, _isPressed);
}
}
}
private bool _isPointerDown;
public override bool OnPointerDown(IGuiContext context, PointerEventArgs args)
{
if (IsEnabled)
{
_isPointerDown = true;
IsPressed = true;
}
return base.OnPointerDown(context, args);
}
public override bool OnPointerUp(IGuiContext context, PointerEventArgs args)
{
_isPointerDown = false;
if (IsPressed)
{
IsPressed = false;
if (BoundingRectangle.Contains(args.Position) && IsEnabled)
Click();
}
return base.OnPointerUp(context, args);
}
public override bool OnPointerEnter(IGuiContext context, PointerEventArgs args)
{
if (IsEnabled && _isPointerDown)
IsPressed = true;
return base.OnPointerEnter(context, args);
}
public override bool OnPointerLeave(IGuiContext context, PointerEventArgs args)
{
if (IsEnabled)
IsPressed = false;
return base.OnPointerLeave(context, args);
}
public void Click()
{
Clicked?.Invoke(this, EventArgs.Empty);
}
}
}