2018-02-09 18:10:41 -08:00
|
|
|
|
/*
|
|
|
|
|
|
Copyright (c) 2017, Lars Brubaker, John Lewin
|
|
|
|
|
|
All rights reserved.
|
|
|
|
|
|
|
|
|
|
|
|
Redistribution and use in source and binary forms, with or without
|
|
|
|
|
|
modification, are permitted provided that the following conditions are met:
|
|
|
|
|
|
|
|
|
|
|
|
1. Redistributions of source code must retain the above copyright notice, this
|
|
|
|
|
|
list of conditions and the following disclaimer.
|
|
|
|
|
|
2. Redistributions in binary form must reproduce the above copyright notice,
|
|
|
|
|
|
this list of conditions and the following disclaimer in the documentation
|
|
|
|
|
|
and/or other materials provided with the distribution.
|
|
|
|
|
|
|
|
|
|
|
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
|
|
|
|
|
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
|
|
|
|
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
|
|
|
|
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
|
|
|
|
|
|
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
|
|
|
|
|
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
|
|
|
|
|
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
|
|
|
|
|
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
|
|
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
|
|
|
|
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
|
|
|
|
|
|
|
|
The views and conclusions contained in the software and documentation are those
|
|
|
|
|
|
of the authors and should not be interpreted as representing official policies,
|
|
|
|
|
|
either expressed or implied, of the FreeBSD Project.
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
2019-04-11 13:33:41 -07:00
|
|
|
|
using System.Linq;
|
2018-02-09 18:10:41 -08:00
|
|
|
|
using MatterHackers.Agg.UI;
|
|
|
|
|
|
using MatterHackers.VectorMath;
|
|
|
|
|
|
|
|
|
|
|
|
namespace MatterHackers.MatterControl.SlicerConfiguration
|
|
|
|
|
|
{
|
|
|
|
|
|
public class Vector3Field : UIField
|
|
|
|
|
|
{
|
|
|
|
|
|
public static readonly int VectorXYZEditWidth = (int)(60 * GuiWidget.DeviceScale + .5);
|
|
|
|
|
|
|
2022-07-15 17:28:39 -07:00
|
|
|
|
private ThemedNumberEdit xEditWidget;
|
|
|
|
|
|
private ThemedNumberEdit yEditWidget;
|
|
|
|
|
|
private ThemedNumberEdit zEditWidget;
|
2018-10-14 20:05:37 -07:00
|
|
|
|
private ThemeConfig theme;
|
|
|
|
|
|
|
|
|
|
|
|
public Vector3Field(ThemeConfig theme)
|
|
|
|
|
|
{
|
|
|
|
|
|
this.theme = theme;
|
|
|
|
|
|
}
|
2018-02-09 18:10:41 -08:00
|
|
|
|
|
|
|
|
|
|
public Vector3 Vector3
|
|
|
|
|
|
{
|
2019-04-11 13:33:41 -07:00
|
|
|
|
get => new Vector3(xEditWidget.Value, yEditWidget.Value, zEditWidget.Value);
|
2018-02-09 18:10:41 -08:00
|
|
|
|
set
|
|
|
|
|
|
{
|
|
|
|
|
|
xEditWidget.Value = value.X;
|
|
|
|
|
|
yEditWidget.Value = value.Y;
|
|
|
|
|
|
zEditWidget.Value = value.Z;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public override void Initialize(int tabIndex)
|
|
|
|
|
|
{
|
|
|
|
|
|
var container = new FlowLayoutWidget();
|
|
|
|
|
|
|
2019-04-11 12:57:38 -07:00
|
|
|
|
string[] xyzStrings = this.Value?.Split(',');
|
|
|
|
|
|
if (xyzStrings == null
|
|
|
|
|
|
|| xyzStrings.Length != 3)
|
2018-02-09 18:10:41 -08:00
|
|
|
|
{
|
2019-04-11 12:57:38 -07:00
|
|
|
|
xyzStrings = new string[] { "0", "0", "0" };
|
2018-02-09 18:10:41 -08:00
|
|
|
|
}
|
|
|
|
|
|
|
2019-04-11 12:57:38 -07:00
|
|
|
|
double.TryParse(xyzStrings[0], out double currentXValue);
|
2018-02-09 18:10:41 -08:00
|
|
|
|
|
2022-07-15 17:28:39 -07:00
|
|
|
|
xEditWidget = new ThemedNumberEdit(currentXValue, theme, 'X', allowNegatives: true, allowDecimals: true, pixelWidth: VectorXYZEditWidth, tabIndex: tabIndex++)
|
2018-02-09 18:10:41 -08:00
|
|
|
|
{
|
|
|
|
|
|
ToolTipText = this.HelpText,
|
|
|
|
|
|
TabIndex = tabIndex,
|
2019-01-03 08:55:21 -08:00
|
|
|
|
SelectAllOnFocus = true,
|
|
|
|
|
|
Margin = theme.ButtonSpacing
|
2018-02-09 18:10:41 -08:00
|
|
|
|
};
|
|
|
|
|
|
xEditWidget.ActuallNumberEdit.EditComplete += (sender, e) =>
|
|
|
|
|
|
{
|
|
|
|
|
|
this.SetValue(
|
2019-04-11 12:57:38 -07:00
|
|
|
|
string.Format(
|
|
|
|
|
|
"{0},{1},{2}",
|
2019-04-12 07:23:17 -07:00
|
|
|
|
xEditWidget.ActuallNumberEdit.Value.ToString("0.###"),
|
|
|
|
|
|
yEditWidget.ActuallNumberEdit.Value.ToString("0.###"),
|
|
|
|
|
|
zEditWidget.ActuallNumberEdit.Value.ToString("0.###")),
|
2018-02-09 18:10:41 -08:00
|
|
|
|
userInitiated: true);
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
container.AddChild(xEditWidget);
|
|
|
|
|
|
|
2019-04-11 12:57:38 -07:00
|
|
|
|
double.TryParse(xyzStrings[1], out double currentYValue);
|
2018-02-09 18:10:41 -08:00
|
|
|
|
|
2022-07-15 17:28:39 -07:00
|
|
|
|
yEditWidget = new ThemedNumberEdit(currentYValue, theme, 'Y', allowNegatives: true, allowDecimals: true, pixelWidth: VectorXYZEditWidth, tabIndex: tabIndex++)
|
2018-02-09 18:10:41 -08:00
|
|
|
|
{
|
|
|
|
|
|
ToolTipText = this.HelpText,
|
|
|
|
|
|
TabIndex = tabIndex + 1,
|
|
|
|
|
|
SelectAllOnFocus = true,
|
2019-01-03 08:55:21 -08:00
|
|
|
|
Margin = theme.ButtonSpacing
|
2018-02-09 18:10:41 -08:00
|
|
|
|
};
|
|
|
|
|
|
yEditWidget.ActuallNumberEdit.EditComplete += (sender, e) =>
|
|
|
|
|
|
{
|
|
|
|
|
|
this.SetValue(
|
2019-04-11 12:57:38 -07:00
|
|
|
|
string.Format(
|
|
|
|
|
|
"{0},{1},{2}",
|
|
|
|
|
|
xEditWidget.ActuallNumberEdit.Value.ToString("0.###"),
|
|
|
|
|
|
yEditWidget.ActuallNumberEdit.Value.ToString("0.###"),
|
|
|
|
|
|
zEditWidget.ActuallNumberEdit.Value.ToString("0.###")),
|
2018-02-09 18:10:41 -08:00
|
|
|
|
userInitiated: true);
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
container.AddChild(yEditWidget);
|
|
|
|
|
|
|
2019-04-11 12:57:38 -07:00
|
|
|
|
double.TryParse(xyzStrings[2], out double currentZValue);
|
2018-02-09 18:10:41 -08:00
|
|
|
|
|
2022-07-15 17:28:39 -07:00
|
|
|
|
zEditWidget = new ThemedNumberEdit(currentZValue, theme, 'Z', allowNegatives: true, allowDecimals: true, pixelWidth: VectorXYZEditWidth, tabIndex: tabIndex++)
|
2018-02-09 18:10:41 -08:00
|
|
|
|
{
|
|
|
|
|
|
ToolTipText = this.HelpText,
|
|
|
|
|
|
TabIndex = tabIndex + 1,
|
|
|
|
|
|
SelectAllOnFocus = true,
|
2019-01-03 08:55:21 -08:00
|
|
|
|
Margin = theme.ButtonSpacing
|
2018-02-09 18:10:41 -08:00
|
|
|
|
};
|
|
|
|
|
|
zEditWidget.ActuallNumberEdit.EditComplete += (sender, e) =>
|
|
|
|
|
|
{
|
|
|
|
|
|
this.SetValue(
|
2019-04-11 12:57:38 -07:00
|
|
|
|
string.Format(
|
|
|
|
|
|
"{0},{1},{2}",
|
|
|
|
|
|
xEditWidget.ActuallNumberEdit.Value.ToString("0.###"),
|
|
|
|
|
|
yEditWidget.ActuallNumberEdit.Value.ToString("0.###"),
|
|
|
|
|
|
zEditWidget.ActuallNumberEdit.Value.ToString("0.###")),
|
2018-02-09 18:10:41 -08:00
|
|
|
|
userInitiated: true);
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
container.AddChild(zEditWidget);
|
|
|
|
|
|
|
|
|
|
|
|
this.Content = container;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
protected override string ConvertValue(string newValue)
|
|
|
|
|
|
{
|
2019-04-11 13:33:41 -07:00
|
|
|
|
// Ensure we have a three value CSV or force to '0,0,0'
|
|
|
|
|
|
string[] xyzwStrings = newValue.Split(',');
|
|
|
|
|
|
if (xyzwStrings.Length != 3)
|
|
|
|
|
|
{
|
|
|
|
|
|
xyzwStrings = new string[] { "0", "0", "0" };
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Convert string segments to double, then back to expected CSV string
|
|
|
|
|
|
return string.Join(
|
|
|
|
|
|
",",
|
|
|
|
|
|
xyzwStrings.Select(s =>
|
|
|
|
|
|
{
|
|
|
|
|
|
double.TryParse(s, out double doubleValue);
|
|
|
|
|
|
return doubleValue.ToString();
|
|
|
|
|
|
}).ToArray());
|
2018-02-09 18:10:41 -08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
protected override void OnValueChanged(FieldChangedEventArgs fieldChangedEventArgs)
|
|
|
|
|
|
{
|
2019-04-11 12:57:38 -07:00
|
|
|
|
string[] xyzStrings = this.Value.Split(',');
|
|
|
|
|
|
if (xyzStrings.Length != 3)
|
2018-02-09 18:10:41 -08:00
|
|
|
|
{
|
2019-04-11 12:57:38 -07:00
|
|
|
|
xyzStrings = new string[] { "0", "0", "0" };
|
2018-02-09 18:10:41 -08:00
|
|
|
|
}
|
|
|
|
|
|
|
2019-04-11 13:33:41 -07:00
|
|
|
|
xEditWidget.Text = xyzStrings[0];
|
|
|
|
|
|
yEditWidget.Text = xyzStrings[1];
|
|
|
|
|
|
zEditWidget.Text = xyzStrings[2];
|
2018-02-09 18:10:41 -08:00
|
|
|
|
|
|
|
|
|
|
base.OnValueChanged(fieldChangedEventArgs);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|