mirror of
https://github.com/cemu-project/DS4Windows.git
synced 2024-11-23 17:59:16 +01:00
53 lines
1.4 KiB
C#
53 lines
1.4 KiB
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
using DS4Windows;
|
|||
|
using DS4WinWPF.DS4Forms.ViewModels.Util;
|
|||
|
|
|||
|
namespace DS4WinWPF.DS4Forms.ViewModels.SpecialActions
|
|||
|
{
|
|||
|
public class DisconnectBTViewModel : NotifyDataErrorBase
|
|||
|
{
|
|||
|
private int holdInterval;
|
|||
|
public int HoldInterval { get => holdInterval; set => holdInterval = value; }
|
|||
|
|
|||
|
public void LoadAction(SpecialAction action)
|
|||
|
{
|
|||
|
holdInterval = (int)action.delayTime;
|
|||
|
}
|
|||
|
|
|||
|
public void SaveAction(SpecialAction action, bool edit = false)
|
|||
|
{
|
|||
|
Global.SaveAction(action.name, action.controls, 5, $"{holdInterval}", edit);
|
|||
|
}
|
|||
|
|
|||
|
public override bool IsValid(SpecialAction action)
|
|||
|
{
|
|||
|
ClearOldErrors();
|
|||
|
|
|||
|
bool valid = true;
|
|||
|
List<string> holdIntervalErrors = new List<string>();
|
|||
|
|
|||
|
if (holdInterval < 0 || holdInterval > 60)
|
|||
|
{
|
|||
|
holdIntervalErrors.Add("Interval not valid");
|
|||
|
errors["HoldInterval"] = holdIntervalErrors;
|
|||
|
RaiseErrorsChanged("HoldInterval");
|
|||
|
}
|
|||
|
|
|||
|
return valid;
|
|||
|
}
|
|||
|
|
|||
|
public override void ClearOldErrors()
|
|||
|
{
|
|||
|
if (errors.Count > 0)
|
|||
|
{
|
|||
|
errors.Clear();
|
|||
|
RaiseErrorsChanged("HoldInterval");
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|