mirror of
https://github.com/Artemis-RGB/Artemis
synced 2025-12-31 09:43:46 +00:00
Draggable float - Always use a InvariantCulture
Noise brush - Added missing infinity check because float is funny
This commit is contained in:
parent
c661b64404
commit
ba80e25d34
@ -46,7 +46,7 @@
|
|||||||
Height="17"
|
Height="17"
|
||||||
Padding="2 0"
|
Padding="2 0"
|
||||||
Margin="0 3 0 0"
|
Margin="0 3 0 0"
|
||||||
Text="{Binding Value, StringFormat=N3, RelativeSource={RelativeSource AncestorType={x:Type UserControl}}}"
|
Text="{Binding InputValue, StringFormat=N3, RelativeSource={RelativeSource AncestorType={x:Type UserControl}}}"
|
||||||
Cursor="/Resources/Cursors/aero_drag_ew.cur"
|
Cursor="/Resources/Cursors/aero_drag_ew.cur"
|
||||||
MouseDown="InputMouseDown"
|
MouseDown="InputMouseDown"
|
||||||
MouseUp="InputMouseUp"
|
MouseUp="InputMouseUp"
|
||||||
@ -60,7 +60,7 @@
|
|||||||
Height="21"
|
Height="21"
|
||||||
Padding="0 0 -2 0"
|
Padding="0 0 -2 0"
|
||||||
HorizontalAlignment="Left"
|
HorizontalAlignment="Left"
|
||||||
Text="{Binding Value, StringFormat=N3, RelativeSource={RelativeSource AncestorType={x:Type UserControl}}}"
|
Text="{Binding InputValue, RelativeSource={RelativeSource AncestorType={x:Type UserControl}}}"
|
||||||
LostFocus="InputLostFocus"
|
LostFocus="InputLostFocus"
|
||||||
KeyDown="InputKeyDown"
|
KeyDown="InputKeyDown"
|
||||||
Visibility="Collapsed"
|
Visibility="Collapsed"
|
||||||
|
|||||||
@ -1,6 +1,8 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.ComponentModel;
|
using System.ComponentModel;
|
||||||
|
using System.Globalization;
|
||||||
using System.Runtime.CompilerServices;
|
using System.Runtime.CompilerServices;
|
||||||
|
using System.Text.RegularExpressions;
|
||||||
using System.Windows;
|
using System.Windows;
|
||||||
using System.Windows.Controls;
|
using System.Windows.Controls;
|
||||||
using System.Windows.Input;
|
using System.Windows.Input;
|
||||||
@ -29,6 +31,7 @@ namespace Artemis.UI.Shared
|
|||||||
private bool _calledDragStarted;
|
private bool _calledDragStarted;
|
||||||
|
|
||||||
private bool _inCallback;
|
private bool _inCallback;
|
||||||
|
private readonly Regex _inputRegex = new Regex("^[.][-|0-9]+$|^-?[0-9]*[.]{0,1}[0-9]*$");
|
||||||
private Point _mouseDragStartPoint;
|
private Point _mouseDragStartPoint;
|
||||||
private float _startValue;
|
private float _startValue;
|
||||||
|
|
||||||
@ -43,6 +46,12 @@ namespace Artemis.UI.Shared
|
|||||||
set => SetValue(ValueProperty, value);
|
set => SetValue(ValueProperty, value);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public string InputValue
|
||||||
|
{
|
||||||
|
get => Value.ToString("N3", CultureInfo.InvariantCulture);
|
||||||
|
set => UpdateValue(value);
|
||||||
|
}
|
||||||
|
|
||||||
public float StepSize
|
public float StepSize
|
||||||
{
|
{
|
||||||
get => (float) GetValue(StepSizeProperty);
|
get => (float) GetValue(StepSizeProperty);
|
||||||
@ -61,26 +70,44 @@ namespace Artemis.UI.Shared
|
|||||||
set => SetValue(MaxProperty, value);
|
set => SetValue(MaxProperty, value);
|
||||||
}
|
}
|
||||||
|
|
||||||
public event PropertyChangedEventHandler PropertyChanged;
|
private void UpdateValue(string value)
|
||||||
|
|
||||||
public event EventHandler DragStarted;
|
|
||||||
public event EventHandler DragEnded;
|
|
||||||
|
|
||||||
protected virtual void OnPropertyChanged([CallerMemberName] string propertyName = null)
|
|
||||||
{
|
{
|
||||||
PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName));
|
if (!float.TryParse(value, NumberStyles.Float, CultureInfo.InvariantCulture, out var parsedResult))
|
||||||
|
return;
|
||||||
|
|
||||||
|
Value = parsedResult;
|
||||||
|
OnPropertyChanged(nameof(InputValue));
|
||||||
}
|
}
|
||||||
|
|
||||||
protected virtual void OnDragStarted()
|
|
||||||
|
private void DisplayInput()
|
||||||
{
|
{
|
||||||
DragStarted?.Invoke(this, EventArgs.Empty);
|
DragHandle.Visibility = Visibility.Collapsed;
|
||||||
|
DraggableFloatInputTextBox.Visibility = Visibility.Visible;
|
||||||
|
DraggableFloatInputTextBox.Focus();
|
||||||
|
DraggableFloatInputTextBox.SelectAll();
|
||||||
}
|
}
|
||||||
|
|
||||||
protected virtual void OnDragEnded()
|
private void DisplayDragHandle()
|
||||||
{
|
{
|
||||||
DragEnded?.Invoke(this, EventArgs.Empty);
|
DraggableFloatInputTextBox.Visibility = Visibility.Collapsed;
|
||||||
|
DragHandle.Visibility = Visibility.Visible;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Rounds the provided decimal to the nearest value of x with a given threshold
|
||||||
|
/// Source: https://stackoverflow.com/a/25922075/5015269
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="input">The value to round</param>
|
||||||
|
/// <param name="nearestOf">The value to round down towards</param>
|
||||||
|
private static decimal RoundToNearestOf(decimal input, decimal nearestOf)
|
||||||
|
{
|
||||||
|
return Math.Floor(input / nearestOf + 0.5m) * nearestOf;
|
||||||
|
}
|
||||||
|
|
||||||
|
#region Event handlers
|
||||||
|
|
||||||
private static void FloatPropertyChangedCallback(DependencyObject d, DependencyPropertyChangedEventArgs e)
|
private static void FloatPropertyChangedCallback(DependencyObject d, DependencyPropertyChangedEventArgs e)
|
||||||
{
|
{
|
||||||
var draggableFloat = (DraggableFloat) d;
|
var draggableFloat = (DraggableFloat) d;
|
||||||
@ -89,6 +116,7 @@ namespace Artemis.UI.Shared
|
|||||||
|
|
||||||
draggableFloat._inCallback = true;
|
draggableFloat._inCallback = true;
|
||||||
draggableFloat.OnPropertyChanged(nameof(Value));
|
draggableFloat.OnPropertyChanged(nameof(Value));
|
||||||
|
draggableFloat.OnPropertyChanged(nameof(InputValue));
|
||||||
draggableFloat._inCallback = false;
|
draggableFloat._inCallback = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -166,20 +194,6 @@ namespace Artemis.UI.Shared
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private void DisplayInput()
|
|
||||||
{
|
|
||||||
DragHandle.Visibility = Visibility.Collapsed;
|
|
||||||
DraggableFloatInputTextBox.Visibility = Visibility.Visible;
|
|
||||||
DraggableFloatInputTextBox.Focus();
|
|
||||||
DraggableFloatInputTextBox.SelectAll();
|
|
||||||
}
|
|
||||||
|
|
||||||
private void DisplayDragHandle()
|
|
||||||
{
|
|
||||||
DraggableFloatInputTextBox.Visibility = Visibility.Collapsed;
|
|
||||||
DragHandle.Visibility = Visibility.Visible;
|
|
||||||
}
|
|
||||||
|
|
||||||
private void Input_OnRequestBringIntoView(object sender, RequestBringIntoViewEventArgs e)
|
private void Input_OnRequestBringIntoView(object sender, RequestBringIntoViewEventArgs e)
|
||||||
{
|
{
|
||||||
e.Handled = true;
|
e.Handled = true;
|
||||||
@ -187,7 +201,7 @@ namespace Artemis.UI.Shared
|
|||||||
|
|
||||||
private void Input_PreviewTextInput(object sender, TextCompositionEventArgs e)
|
private void Input_PreviewTextInput(object sender, TextCompositionEventArgs e)
|
||||||
{
|
{
|
||||||
e.Handled = !ValidateInput(sender, e);
|
e.Handled = !_inputRegex.IsMatch(e.Text);
|
||||||
}
|
}
|
||||||
|
|
||||||
private void Input_OnPasting(object sender, DataObjectPastingEventArgs e)
|
private void Input_OnPasting(object sender, DataObjectPastingEventArgs e)
|
||||||
@ -195,37 +209,36 @@ namespace Artemis.UI.Shared
|
|||||||
if (e.DataObject.GetDataPresent(typeof(string)))
|
if (e.DataObject.GetDataPresent(typeof(string)))
|
||||||
{
|
{
|
||||||
var text = (string) e.DataObject.GetData(typeof(string));
|
var text = (string) e.DataObject.GetData(typeof(string));
|
||||||
if (!float.TryParse(text, out _))
|
if (!_inputRegex.IsMatch(text))
|
||||||
e.CancelCommand();
|
e.CancelCommand();
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
e.CancelCommand();
|
e.CancelCommand();
|
||||||
}
|
}
|
||||||
|
|
||||||
// Borrowed from https://stackoverflow.com/a/48082972/5015269 because a regex approach has bad compatibility with
|
#endregion
|
||||||
// different locales
|
|
||||||
private bool ValidateInput(object sender, TextCompositionEventArgs e)
|
#region Events
|
||||||
|
|
||||||
|
public event PropertyChangedEventHandler PropertyChanged;
|
||||||
|
public event EventHandler DragStarted;
|
||||||
|
public event EventHandler DragEnded;
|
||||||
|
|
||||||
|
protected virtual void OnPropertyChanged([CallerMemberName] string propertyName = null)
|
||||||
{
|
{
|
||||||
if (!(sender is TextBox textBox))
|
PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName));
|
||||||
return false;
|
|
||||||
|
|
||||||
// Use SelectionStart property to find the caret position.
|
|
||||||
// Insert the previewed text into the existing text in the textbox.
|
|
||||||
var fullText = textBox.Text.Insert(textBox.SelectionStart, e.Text);
|
|
||||||
|
|
||||||
// If parsing is successful, set Handled to false
|
|
||||||
return float.TryParse(fullText, out _);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
protected virtual void OnDragStarted()
|
||||||
/// Rounds the provided decimal to the nearest value of x with a given threshold
|
|
||||||
/// Source: https://stackoverflow.com/a/25922075/5015269
|
|
||||||
/// </summary>
|
|
||||||
/// <param name="input">The value to round</param>
|
|
||||||
/// <param name="nearestOf">The value to round down towards</param>
|
|
||||||
private static decimal RoundToNearestOf(decimal input, decimal nearestOf)
|
|
||||||
{
|
{
|
||||||
return Math.Floor(input / nearestOf + 0.5m) * nearestOf;
|
DragStarted?.Invoke(this, EventArgs.Empty);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
protected virtual void OnDragEnded()
|
||||||
|
{
|
||||||
|
DragEnded?.Invoke(this, EventArgs.Empty);
|
||||||
|
}
|
||||||
|
|
||||||
|
#endregion
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -69,10 +69,10 @@ namespace Artemis.Plugins.LayerBrushes.Noise
|
|||||||
var hardness = Properties.Hardness.CurrentValue / 100f;
|
var hardness = Properties.Hardness.CurrentValue / 100f;
|
||||||
|
|
||||||
var scrolledX = renderPoint.X + _x;
|
var scrolledX = renderPoint.X + _x;
|
||||||
if (float.IsNaN(scrolledX))
|
if (float.IsNaN(scrolledX) || float.IsInfinity(scrolledX))
|
||||||
scrolledX = 0;
|
scrolledX = 0;
|
||||||
var scrolledY = renderPoint.Y + _y;
|
var scrolledY = renderPoint.Y + _y;
|
||||||
if (float.IsNaN(scrolledY))
|
if (float.IsNaN(scrolledY) || float.IsInfinity(scrolledY))
|
||||||
scrolledY = 0;
|
scrolledY = 0;
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user