mattercontrol/MatterControlLib/SlicerConfiguration/SliceSettingsWidget.cs

1021 lines
29 KiB
C#
Raw Normal View History

/*
Copyright (c) 2019, Lars Brubaker, John Lewin
All rights reserved.
Redistribution and use in source and binary forms, with or without
2015-04-08 15:20:10 -07:00
modification, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice, this
2015-04-08 15:20:10 -07:00
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
2015-04-08 15:20:10 -07:00
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
2015-04-08 15:20:10 -07:00
of the authors and should not be interpreted as representing official policies,
either expressed or implied, of the FreeBSD Project.
*/
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Text.RegularExpressions;
2014-01-29 19:09:30 -08:00
using MatterHackers.Agg;
using MatterHackers.Agg.UI;
2014-01-29 19:09:30 -08:00
using MatterHackers.Localizations;
using MatterHackers.MatterControl.CustomWidgets;
using MatterHackers.MatterControl.PartPreviewWindow;
using MatterHackers.MatterControl.PrintLibrary;
using MatterHackers.VectorMath;
2014-01-29 19:09:30 -08:00
namespace MatterHackers.MatterControl.SlicerConfiguration
{
public class SliceSettingsWidget : FlowLayoutWidget
2015-04-08 15:20:10 -07:00
{
2020-06-21 09:34:53 -07:00
private readonly PresetsToolbar settingsControlBar;
2020-06-21 09:34:53 -07:00
public SettingsContext SettingsContext { get; private set; }
private readonly PrinterConfig printer;
public SliceSettingsWidget(PrinterConfig printer, SettingsContext settingsContext, ThemeConfig theme)
2020-06-21 09:34:53 -07:00
: base(FlowDirection.TopToBottom)
2015-04-08 15:20:10 -07:00
{
this.printer = printer;
2020-06-21 09:34:53 -07:00
this.SettingsContext = settingsContext;
2016-04-18 11:31:31 -07:00
settingsControlBar = new PresetsToolbar(printer, theme)
2016-03-30 18:33:29 -07:00
{
HAnchor = HAnchor.Stretch,
2016-03-30 18:33:29 -07:00
Padding = new BorderDouble(8, 12, 8, 8)
};
2014-01-29 19:09:30 -08:00
using (this.LayoutLock())
{
this.AddChild(settingsControlBar);
var settingsSection = PrinterSettings.Layout.SlicingSections[0];
switch (UserSettings.Instance.get(UserSettingsKey.SliceSettingsViewDetail))
{
case "Simple":
settingsSection = PrinterSettings.Layout.SlicingSections[0];
break;
case "Intermediate":
settingsSection = PrinterSettings.Layout.SlicingSections[1];
break;
case "Advanced":
settingsSection = PrinterSettings.Layout.SlicingSections[2];
break;
}
this.AddChild(
new SliceSettingsTabView(
settingsContext,
"SliceSettings",
printer,
settingsSection,
theme,
isPrimarySettingsView: true,
justMySettingsTitle: "My Modified Settings".Localize(),
databaseMRUKey: UserSettingsKey.SliceSettingsWidget_CurrentTab));
}
this.AnchorAll();
}
// TODO: This should just proxy to settingsControlBar.Visible. Having local state and pushing values on event listeners seems off
private bool showControlBar = true;
2020-06-21 09:34:53 -07:00
public bool ShowControlBar
{
2020-06-21 09:34:53 -07:00
get
{
return showControlBar;
}
set
{
settingsControlBar.Visible = value;
showControlBar = value;
}
}
}
public class SliceSettingsTabView : SimpleTabs
{
// Sanitize group names for use as keys in db fields
2020-06-21 09:34:53 -07:00
private static readonly Regex NameSanitizer = new Regex("[^a-zA-Z0-9-]", RegexOptions.Compiled);
private int tabIndexForItem = 0;
2021-01-05 17:55:52 -08:00
private readonly Dictionary<string, UIField> allUiFields = new Dictionary<string, UIField>();
2020-06-21 09:34:53 -07:00
private readonly ThemeConfig theme;
private readonly PrinterConfig printer;
private readonly SettingsContext settingsContext;
private readonly bool isPrimarySettingsView;
private readonly TextEditWithInlineCancel settingsNameEdit;
private int groupPanelCount = 0;
2021-01-05 17:55:52 -08:00
private readonly List<(GuiWidget widget, SliceSettingData settingData)> settingsRows;
private readonly TextWidget filteredItemsHeading;
2020-06-21 09:34:53 -07:00
private readonly Action<PopupMenu> externalExtendMenu;
private readonly string scopeName;
public SliceSettingsTabView(SettingsContext settingsContext,
string scopeName,
PrinterConfig printer,
SettingsLayout.SettingsSection settingsSection,
ThemeConfig theme,
bool isPrimarySettingsView,
string databaseMRUKey,
string justMySettingsTitle,
Action<PopupMenu> extendPopupMenu = null)
2020-06-21 09:34:53 -07:00
: base(theme)
{
using (this.LayoutLock())
{
this.VAnchor = VAnchor.Stretch;
this.HAnchor = HAnchor.Stretch;
this.externalExtendMenu = extendPopupMenu;
this.scopeName = scopeName;
2018-01-21 21:07:14 -08:00
var overflowBar = this.TabBar as OverflowBar;
overflowBar.ToolTipText = "Settings View Options".Localize();
overflowBar.ExtendOverflowMenu = this.ExtendOverflowMenu;
2018-01-21 21:07:14 -08:00
2021-01-05 17:55:52 -08:00
this.TabBar.RightAnchorItem.Name = "Slice Settings Overflow Menu";
this.TabBar.Padding = this.TabBar.Margin.Clone(right: theme.ToolbarPadding.Right);
settingsNameEdit = new TextEditWithInlineCancel(theme, "name".Localize())
{
Visible = false,
BackgroundColor = theme.TabBarBackground,
MinimumSize = new Vector2(0, this.TabBar.Height)
};
settingsNameEdit.TextEditWidget.Margin = new BorderDouble(3, 0);
settingsNameEdit.TextEditWidget.ActualTextEditWidget.EnterPressed += (s, e) =>
{
var filter = settingsNameEdit.TextEditWidget.Text.Trim();
2021-01-05 17:55:52 -08:00
foreach (var (widget, settingData) in this.settingsRows)
{
2021-01-05 17:55:52 -08:00
var metaData = settingData;
// Show matching items
2021-01-05 17:55:52 -08:00
widget.Visible = metaData.SlicerConfigName.IndexOf(filter, StringComparison.OrdinalIgnoreCase) >= 0
|| metaData.HelpText.IndexOf(filter, StringComparison.OrdinalIgnoreCase) >= 0;
}
this.ShowFilteredView();
};
settingsNameEdit.ResetButton.Click += (s, e) =>
{
settingsNameEdit.Visible = false;
settingsNameEdit.TextEditWidget.Text = "";
this.ClearFilter();
};
// Add heading for My Settings view
settingsNameEdit.AddChild(filteredItemsHeading = new TextWidget(justMySettingsTitle, pointSize: theme.DefaultFontSize, textColor: theme.TextColor)
{
Margin = new BorderDouble(left: 10),
HAnchor = HAnchor.Left,
VAnchor = VAnchor.Center,
Visible = false
}, 0);
this.AddChild(settingsNameEdit, 0);
var scrollable = new ScrollableWidget(true)
{
HAnchor = HAnchor.Stretch,
VAnchor = VAnchor.Stretch,
};
scrollable.ScrollArea.HAnchor = HAnchor.Stretch;
var tabContainer = new FlowLayoutWidget(FlowDirection.TopToBottom)
{
VAnchor = VAnchor.Fit,
HAnchor = HAnchor.Stretch,
};
scrollable.AddChild(tabContainer);
this.AddChild(scrollable);
// Force TopToBottom flowlayout contained in scrollable as AddChild target
this.TabContainer = tabContainer;
this.theme = theme;
this.printer = printer;
this.settingsContext = settingsContext;
this.isPrimarySettingsView = isPrimarySettingsView;
this.TabBar.BackgroundColor = theme.TabBarBackground;
2018-01-11 12:29:19 -08:00
tabIndexForItem = 0;
this.settingsRows = new List<(GuiWidget, SliceSettingData)>();
allUiFields = new Dictionary<string, UIField>();
var errors = printer.ValidateSettings(settingsContext);
// Loop over categories creating a tab for each
foreach (var category in settingsSection.Categories)
{
if (category.Name == "Printer"
&& (settingsContext.ViewFilter == NamedSettingsLayers.Material || settingsContext.ViewFilter == NamedSettingsLayers.Quality))
{
continue;
}
var categoryPanel = new FlowLayoutWidget(FlowDirection.TopToBottom)
{
VAnchor = VAnchor.Fit,
HAnchor = HAnchor.Stretch,
};
using (categoryPanel.LayoutLock())
{
// Loop over all groups in this tab and add their content
bool hasVisibleSection = false;
foreach (var group in category.Groups)
{
if (group.Name == "Connection")
{
categoryPanel.AddChild(
this.CreateOemProfileInfoRow());
}
2014-01-29 19:09:30 -08:00
var groupSection = this.CreateGroupSection(group, errors);
groupSection.Name = group.Name + " Panel";
if (groupSection.Descendants<SliceSettingsRow>().Any())
{
categoryPanel.AddChild(groupSection);
}
hasVisibleSection = hasVisibleSection || groupSection.Checkbox.Checked;
}
if (!hasVisibleSection
&& categoryPanel.Children.OfType<SectionWidget>().FirstOrDefault() is SectionWidget sectionWidget)
{
sectionWidget.Checkbox.Checked = true;
}
if (categoryPanel.Descendants<SliceSettingsRow>().Any())
{
this.AddTab(
new ToolTab(
category.Name,
category.Name.Localize(),
this,
categoryPanel,
theme,
hasClose: false,
pointSize: theme.DefaultFontSize)
{
Name = category.Name + " Tab",
InactiveTabColor = Color.Transparent,
ActiveTabColor = theme.BackgroundColor
});
}
}
categoryPanel.PerformLayout();
}
2021-01-05 17:55:52 -08:00
if (settingsSection.Name == "Slice Simple"
&& UserSettings.Instance.get(UserSettingsKey.SliceSettingsMoreClicked) != "true")
{
2021-01-06 08:50:36 -08:00
var button = new TextButton("More".Localize(), theme, 8)
2021-01-05 17:55:52 -08:00
{
Margin = new BorderDouble(5, 0),
Padding = new BorderDouble(7, 3),
VAnchor = VAnchor.Fit | VAnchor.Center,
HAnchor = HAnchor.Fit,
BackgroundColor = new Color(theme.AccentMimimalOverlay, 50),
HoverColor = theme.AccentMimimalOverlay,
BorderColor = theme.PrimaryAccentColor,
RenderOutline = true,
2021-01-06 08:50:36 -08:00
ToolTipText = "Open Settings View Options".Localize()
2021-01-05 17:55:52 -08:00
};
button.Click += (s, e) =>
{
this.TabBar.RightAnchorItem.InvokeClick();
};
button.RoundRadius = button.Height / 2;
this.TabBar.AddChild(button);
}
this.TabBar.AddChild(new HorizontalSpacer());
var searchButton = theme.CreateSearchButton();
searchButton.Click += (s, e) =>
{
filteredItemsHeading.Visible = false;
settingsNameEdit.TextEditWidget.Visible = true;
settingsNameEdit.Visible = true;
settingsNameEdit.TextEditWidget.Focus();
this.TabBar.Visible = false;
};
2018-01-21 21:07:14 -08:00
this.TabBar.AddChild(searchButton);
2018-01-21 21:07:14 -08:00
searchButton.VAnchor = VAnchor.Center;
searchButton.VAnchorChanged += (s, e) => Console.WriteLine();
// Restore the last selected tab
this.SelectedTabKey = UserSettings.Instance.get(databaseMRUKey);
// Store the last selected tab on change
this.ActiveTabChanged += (s, e) =>
{
if (settingsContext.IsPrimarySettingsView)
{
UserSettings.Instance.set(databaseMRUKey, this.SelectedTabKey);
}
};
2018-11-16 08:44:56 -08:00
// Register listeners
printer.Settings.SettingChanged += Printer_SettingChanged;
}
this.PerformLayout();
2015-04-08 15:20:10 -07:00
}
2014-01-29 19:09:30 -08:00
2018-01-21 21:07:14 -08:00
private void ExtendOverflowMenu(PopupMenu popupMenu)
{
var menu = popupMenu.CreateMenuItem("View Just My Settings".Localize());
menu.ToolTipText = "Show all settings that are not the printer default".Localize();
menu.Click += (s, e) =>
2018-01-21 21:07:14 -08:00
{
switch (settingsContext.ViewFilter)
{
case NamedSettingsLayers.All:
this.FilterToOverrides(printer.Settings.DefaultLayerCascade);
break;
case NamedSettingsLayers.Material:
this.FilterToOverrides(printer.Settings.MaterialLayerCascade);
break;
case NamedSettingsLayers.Quality:
this.FilterToOverrides(printer.Settings.QualityLayerCascade);
break;
}
2018-01-21 21:07:14 -08:00
};
if (settingsContext.ViewFilter == NamedSettingsLayers.All)
{
popupMenu.CreateSeparator();
2021-01-05 17:55:52 -08:00
void SetDetail(string level, bool changingTo)
{
UiThread.RunOnIdle(() =>
{
2021-01-05 17:55:52 -08:00
if (changingTo)
{
UserSettings.Instance.set(UserSettingsKey.SliceSettingsViewDetail, level);
ApplicationController.Instance.ReloadSettings(printer);
2021-01-05 17:55:52 -08:00
UserSettings.Instance.set(UserSettingsKey.SliceSettingsMoreClicked, "true");
}
});
}
2021-01-05 17:55:52 -08:00
int GetMenuIndex()
{
switch(UserSettings.Instance.get(UserSettingsKey.SliceSettingsViewDetail))
2020-12-31 16:50:45 -08:00
{
2021-01-05 17:55:52 -08:00
case "Simple":
return 0;
case "Intermediate":
return 1;
case "Advanced":
return 2;
}
return 0;
}
var menuItem = popupMenu.CreateBoolMenuItem("Simple".Localize(),
() => GetMenuIndex() == 0,
(value) => SetDetail("Simple", value));
menuItem.ToolTipText = "Show only the most important settings";
menuItem = popupMenu.CreateBoolMenuItem("Intermediate".Localize(),
2021-01-05 17:55:52 -08:00
() => GetMenuIndex() == 1,
(value) => SetDetail("Intermediate", value));
menuItem.ToolTipText = "Show commonly changed settings";
menuItem = popupMenu.CreateBoolMenuItem("Advanced".Localize(),
2021-01-05 17:55:52 -08:00
() => GetMenuIndex() == 2,
(value) => SetDetail("Advanced", value));
menuItem.ToolTipText = "Show all available settings";
}
2018-01-21 21:07:14 -08:00
externalExtendMenu?.Invoke(popupMenu);
}
public Dictionary<string, UIField> UIFields => allUiFields;
public SectionWidget CreateGroupSection(SettingsLayout.Group group, List<ValidationError> errors)
{
var groupPanel = new FlowLayoutWidget(FlowDirection.TopToBottom)
{
VAnchor = VAnchor.Fit,
2018-01-03 22:25:25 -08:00
HAnchor = HAnchor.Stretch,
Padding = new BorderDouble(6, 4, 6, 0),
Name = "GroupPanel" + groupPanelCount++
};
2018-01-03 22:25:25 -08:00
string userSettingsKey = string.Format(
"{0}_{1}_{2}",
scopeName,
2020-06-21 09:34:53 -07:00
NameSanitizer.Replace(group.Category.Name, ""),
NameSanitizer.Replace(group.Name, ""));
UIField uiField = null;
var sectionName = group.Name.Localize();
var sectionWidget = new SectionWidget(sectionName, groupPanel, theme, serializationKey: userSettingsKey, defaultExpansion: true, rightAlignedContent: uiField?.Content);
theme.ApplyBoxStyle(sectionWidget);
bool firstRow = true;
GuiWidget settingsRow = null;
2020-06-21 09:34:53 -07:00
var presetsView = settingsContext.ViewFilter == NamedSettingsLayers.Material || settingsContext.ViewFilter == NamedSettingsLayers.Quality;
var ignoredPresets = new HashSet<string> { SettingsKey.temperature2, SettingsKey.temperature3 };
using (groupPanel.LayoutLock())
2017-12-27 07:49:43 -08:00
{
2020-06-21 13:41:37 -07:00
// Add SettingRows for subgroup
foreach (SliceSettingData settingData in group.Settings)
2017-12-27 07:49:43 -08:00
{
2020-06-21 13:41:37 -07:00
// Note: tab sections may disappear if / when they are empty, as controlled by:
// settingShouldBeShown / addedSettingToSubGroup / needToAddSubGroup
bool settingShouldBeShown = !(presetsView && ignoredPresets.Contains(settingData.SlicerConfigName))
&& CheckIfShouldBeShown(settingData, settingsContext);
if (printer.Settings.IsActive(settingData.SlicerConfigName)
&& settingShouldBeShown)
2018-04-11 16:03:22 -07:00
{
2020-06-21 13:41:37 -07:00
settingsRow = CreateItemRow(settingData, errors);
2018-04-11 16:03:22 -07:00
2020-06-21 13:41:37 -07:00
if (firstRow)
{
2020-06-21 13:41:37 -07:00
// First row needs top and bottom border
settingsRow.Border = new BorderDouble(0, 1);
2020-06-21 13:41:37 -07:00
firstRow = false;
}
2018-04-11 16:03:22 -07:00
2020-06-21 13:41:37 -07:00
this.settingsRows.Add((settingsRow, settingData));
2020-06-21 13:41:37 -07:00
groupPanel.AddChild(settingsRow);
}
2017-12-27 07:49:43 -08:00
}
}
groupPanel.PerformLayout();
// Hide border on last item in group
if (settingsRow != null)
{
settingsRow.BorderColor = Color.Transparent;
}
return sectionWidget;
2017-12-27 07:49:43 -08:00
}
public override void OnLoad(EventArgs args)
{
systemWindow = this.Parents<SystemWindow>().FirstOrDefault();
base.OnLoad(args);
}
private static bool CheckIfShouldBeShown(SliceSettingData settingData, SettingsContext settingsContext)
{
bool settingShouldBeShown = settingsContext.ParseShowString(settingData.ShowIfSet);
if (settingsContext.ViewFilter == NamedSettingsLayers.Material || settingsContext.ViewFilter == NamedSettingsLayers.Quality)
{
if (!settingData.ShowAsOverride)
{
settingShouldBeShown = false;
}
}
return settingShouldBeShown;
}
// Creates an information row showing the base OEM profile and its create_date value
public GuiWidget CreateOemProfileInfoRow()
{
var dataArea = new FlowLayoutWidget(FlowDirection.TopToBottom)
{
HAnchor = HAnchor.Stretch,
};
if (isPrimarySettingsView)
2016-07-18 14:59:14 -07:00
{
2017-02-28 15:56:10 -08:00
// OEM_LAYER_DATE:
string lastUpdateTime = "March 1, 2016";
if (printer.Settings?.OemLayer != null)
{
string fromCreatedDate = printer.Settings.OemLayer.ValueOrDefault(SettingsKey.created_date);
2017-02-28 15:56:10 -08:00
try
{
if (!string.IsNullOrEmpty(fromCreatedDate))
{
DateTime time = Convert.ToDateTime(fromCreatedDate).ToLocalTime();
lastUpdateTime = time.ToString("MMMM d, yyyy h:mm tt");
}
}
catch
{
}
}
2017-02-28 15:56:10 -08:00
var row = new FlowLayoutWidget()
{
2018-10-13 17:58:54 -07:00
BackgroundColor = theme.SlightShade,
2017-02-28 15:56:10 -08:00
Padding = new BorderDouble(5),
Margin = new BorderDouble(3, 20, 3, 0),
2017-09-07 21:04:21 -07:00
HAnchor = HAnchor.Stretch,
2017-02-28 15:56:10 -08:00
};
string make = settingsContext.GetValue(SettingsKey.make);
string model = settingsContext.GetValue(SettingsKey.model);
2017-02-28 15:56:10 -08:00
string title = $"{make} {model}";
if (title == "Other Other")
{
2017-02-28 15:56:10 -08:00
title = "Custom Profile".Localize();
}
2016-07-18 14:59:14 -07:00
using (row.LayoutLock())
2017-02-28 15:56:10 -08:00
{
row.AddChild(new TextWidget(title, pointSize: 9)
{
Margin = new BorderDouble(0, 4, 10, 4),
TextColor = theme.TextColor,
});
row.AddChild(new HorizontalSpacer());
2017-02-28 15:56:10 -08:00
row.AddChild(new TextWidget(lastUpdateTime, pointSize: 9)
{
Margin = new BorderDouble(0, 4, 10, 4),
TextColor = theme.TextColor,
});
}
row.PerformLayout();
2017-02-28 15:56:10 -08:00
dataArea.AddChild(row);
}
return dataArea;
}
internal GuiWidget CreateItemRow(SliceSettingData settingData, List<ValidationError> errors)
2017-12-11 22:22:56 -08:00
{
return CreateItemRow(settingData, settingsContext, printer, theme, ref tabIndexForItem, allUiFields, errors);
2017-12-11 22:22:56 -08:00
}
public static GuiWidget CreateItemRow(SliceSettingData settingData, SettingsContext settingsContext, PrinterConfig printer, ThemeConfig theme, ref int tabIndexForItem, Dictionary<string, UIField> fieldCache = null, List<ValidationError> errors = null)
2016-04-18 11:31:31 -07:00
{
string sliceSettingValue = settingsContext.GetValue(settingData.SlicerConfigName);
2017-09-13 06:59:30 -07:00
UIField uiField = null;
2016-05-07 21:05:53 -07:00
bool useDefaultSavePattern = true;
bool placeFieldInDedicatedRow = false;
bool fullRowSelect = settingData.DataEditType == SliceSettingData.DataEditTypes.CHECK_BOX;
var settingsRow = new SliceSettingsRow(printer, settingsContext, settingData, theme, fullRowSelect: fullRowSelect);
void UpdateStyle(object s, StringEventArgs e)
{
if (e.Data == settingData.SlicerConfigName)
{
settingsRow.UpdateStyle();
}
}
printer.Settings.SettingChanged += UpdateStyle;
settingsRow.Closed += (s, e) => printer.Settings.SettingChanged -= UpdateStyle;
2018-04-06 14:50:53 -07:00
switch (settingData.DataEditType)
2016-04-18 11:31:31 -07:00
{
2018-04-06 14:50:53 -07:00
case SliceSettingData.DataEditTypes.INT:
var intField = new IntField(theme);
2018-04-06 14:50:53 -07:00
uiField = intField;
2018-04-06 14:50:53 -07:00
if (settingData.SlicerConfigName == "extruder_count")
{
intField.MaxValue = 4;
intField.MinValue = 0;
}
2018-04-06 14:50:53 -07:00
break;
2015-04-08 15:20:10 -07:00
2018-04-06 14:50:53 -07:00
case SliceSettingData.DataEditTypes.DOUBLE:
case SliceSettingData.DataEditTypes.OFFSET:
uiField = new DoubleField(theme);
2018-04-06 14:50:53 -07:00
break;
2015-04-08 15:20:10 -07:00
case SliceSettingData.DataEditTypes.SLICE_ENGINE:
uiField = new SliceEngineField(printer, theme);
break;
2018-04-06 14:50:53 -07:00
case SliceSettingData.DataEditTypes.POSITIVE_DOUBLE:
if (settingData.SetSettingsOnChange.Count > 0)
{
uiField = new BoundDoubleField(settingsContext, settingData, theme);
2018-04-06 14:50:53 -07:00
}
else
{
uiField = new PositiveDoubleField(theme);
2018-09-07 20:27:09 -07:00
}
2020-06-21 09:34:53 -07:00
2018-04-06 14:50:53 -07:00
break;
case SliceSettingData.DataEditTypes.DOUBLE_OR_PERCENT:
uiField = new DoubleOrPercentField(theme);
2018-04-06 14:50:53 -07:00
break;
case SliceSettingData.DataEditTypes.INT_OR_MM:
uiField = new IntOrMmField(theme);
2018-04-06 14:50:53 -07:00
break;
case SliceSettingData.DataEditTypes.CHECK_BOX:
uiField = new ToggleboxField(theme);
2018-04-06 14:50:53 -07:00
useDefaultSavePattern = false;
uiField.ValueChanged += (s, e) =>
{
if (e.UserInitiated)
{
ICheckbox checkbox = uiField.Content as ICheckbox;
2020-06-21 09:34:53 -07:00
string checkedKey = checkbox.Checked ? "OnValue" : "OffValue";
2018-04-06 14:50:53 -07:00
// Linked settings should be updated in all cases (user clicked checkbox, user clicked clear)
foreach (var setSettingsData in settingData.SetSettingsOnChange)
{
if (setSettingsData.TryGetValue(checkedKey, out string targetValue))
2018-04-06 14:50:53 -07:00
{
settingsContext.SetValue(setSettingsData["TargetSetting"], targetValue);
}
}
2015-04-08 15:20:10 -07:00
2018-04-06 14:50:53 -07:00
// Store actual field value
settingsContext.SetValue(settingData.SlicerConfigName, uiField.Value);
}
};
break;
case SliceSettingData.DataEditTypes.READONLY_STRING:
uiField = new ReadOnlyTextField(theme);
break;
2018-04-06 14:50:53 -07:00
case SliceSettingData.DataEditTypes.STRING:
case SliceSettingData.DataEditTypes.WIDE_STRING:
uiField = new TextField(theme);
2018-04-06 14:50:53 -07:00
break;
2015-04-08 15:20:10 -07:00
2018-04-06 14:50:53 -07:00
case SliceSettingData.DataEditTypes.MULTI_LINE_TEXT:
uiField = new MultilineStringField(theme);
2018-04-06 14:50:53 -07:00
placeFieldInDedicatedRow = true;
break;
2018-07-20 00:11:27 -07:00
case SliceSettingData.DataEditTypes.MARKDOWN_TEXT:
2018-07-20 12:37:08 -07:00
#if !__ANDROID__
2018-07-20 00:11:27 -07:00
uiField = new MarkdownEditField(theme, settingData.PresentationName);
2018-07-20 12:37:08 -07:00
#endif
2018-07-20 00:11:27 -07:00
break;
2018-04-06 14:50:53 -07:00
case SliceSettingData.DataEditTypes.COM_PORT:
useDefaultSavePattern = false;
2018-04-06 14:50:53 -07:00
sliceSettingValue = printer.Settings.Helpers.ComPort();
2018-04-06 14:50:53 -07:00
uiField = new ComPortField(printer, theme);
uiField.ValueChanged += (s, e) =>
{
if (e.UserInitiated)
2017-09-04 13:19:20 +03:00
{
2018-04-06 14:50:53 -07:00
printer.Settings.Helpers.SetComPort(uiField.Value);
}
};
2017-09-04 13:19:20 +03:00
2018-04-06 14:50:53 -07:00
break;
2016-05-02 16:10:20 -07:00
2018-04-06 14:50:53 -07:00
case SliceSettingData.DataEditTypes.LIST:
2018-07-12 09:22:28 -07:00
uiField = new ListField(theme)
2018-04-06 14:50:53 -07:00
{
ListItems = settingData.ListValues.Split(',').ToList()
};
break;
case SliceSettingData.DataEditTypes.HARDWARE_PRESENT:
uiField = new ToggleboxField(theme);
2018-04-06 14:50:53 -07:00
break;
case SliceSettingData.DataEditTypes.VECTOR2:
uiField = new Vector2Field(theme);
2018-04-06 14:50:53 -07:00
break;
case SliceSettingData.DataEditTypes.VECTOR3:
uiField = new Vector3Field(theme);
break;
case SliceSettingData.DataEditTypes.VECTOR4:
uiField = new Vector4Field(theme);
break;
case SliceSettingData.DataEditTypes.BOUNDS:
uiField = new BoundsField(theme);
break;
case SliceSettingData.DataEditTypes.OFFSET3:
if (settingData.SlicerConfigName == "extruder_offset")
{
placeFieldInDedicatedRow = true;
2020-07-05 11:26:35 -07:00
uiField = new ExtruderOffsetField(printer, settingsContext, theme);
}
else
{
uiField = new Vector3Field(theme);
}
2020-06-21 09:34:53 -07:00
2018-04-06 14:50:53 -07:00
break;
2017-12-23 18:49:31 -08:00
#if !__ANDROID__
2018-04-06 14:50:53 -07:00
case SliceSettingData.DataEditTypes.IP_LIST:
2018-07-12 09:22:28 -07:00
uiField = new IpAddessField(printer, theme);
2018-04-06 14:50:53 -07:00
break;
2017-12-23 18:49:31 -08:00
#endif
2018-04-06 14:50:53 -07:00
default:
// Missing Setting
settingsRow.AddContent(new TextWidget($"Missing the setting for '{settingData.DataEditType}'.")
{
TextColor = theme.TextColor,
2018-04-06 14:50:53 -07:00
BackgroundColor = Color.Red
});
break;
2015-04-08 15:20:10 -07:00
}
2017-08-30 00:55:13 -07:00
if (uiField != null)
{
2017-12-11 22:22:56 -08:00
if (fieldCache != null)
{
fieldCache[settingData.SlicerConfigName] = uiField;
}
2017-08-30 00:55:13 -07:00
uiField.HelpText = settingData.HelpText;
uiField.Name = $"{settingData.PresentationName} Field";
2017-08-30 00:55:13 -07:00
uiField.Initialize(tabIndexForItem++);
2018-01-18 17:03:05 -08:00
if (settingData.DataEditType == SliceSettingData.DataEditTypes.WIDE_STRING)
{
uiField.Content.HAnchor = HAnchor.Stretch;
placeFieldInDedicatedRow = true;
}
uiField.SetValue(sliceSettingValue, userInitiated: false);
2017-08-30 00:55:13 -07:00
// Disable ToolTipText on UIFields in favor of popovers
uiField.Content.ToolTipText = "";
// make sure the undo data goes back to the initial value after a change
uiField.ClearUndoHistory();
uiField.ValueChanged += (s, e) =>
{
if (useDefaultSavePattern
&& e.UserInitiated)
{
settingsContext.SetValue(settingData.SlicerConfigName, uiField.Value);
}
settingsRow.UpdateStyle();
};
2017-08-30 00:55:13 -07:00
// After initializing the field, wrap with dropmenu if applicable
2020-12-16 11:20:13 -08:00
if (settingData.QuickMenuSettings.Count > 0)
{
var dropMenu = new DropMenuWrappedField(uiField, settingData, theme.TextColor, theme, printer);
dropMenu.Initialize(tabIndexForItem);
settingsRow.AddContent(dropMenu.Content);
}
else
{
if (!placeFieldInDedicatedRow)
{
settingsRow.AddContent(uiField.Content);
settingsRow.ActionWidget = uiField.Content;
}
}
2017-08-30 00:55:13 -07:00
}
settingsRow.UIField = uiField;
uiField.Row = settingsRow;
if (errors?.Any() == true)
{
settingsRow.UpdateValidationState(errors);
}
2016-04-18 11:31:31 -07:00
// Invoke the UpdateStyle implementation
2016-05-07 21:05:53 -07:00
settingsRow.UpdateStyle();
bool settingEnabled = settingsContext.ParseShowString(settingData.EnableIfSet);
if (settingEnabled
|| settingsContext.ViewFilter == NamedSettingsLayers.Material
|| settingsContext.ViewFilter == NamedSettingsLayers.Quality)
{
if (placeFieldInDedicatedRow)
{
2017-09-13 18:18:11 -07:00
var column = new FlowLayoutWidget(FlowDirection.TopToBottom)
{
2017-09-13 18:18:11 -07:00
Name = "column",
HAnchor = HAnchor.Stretch,
VAnchor = VAnchor.Fit
};
2017-09-13 18:18:11 -07:00
column.AddChild(settingsRow);
2017-09-13 18:18:11 -07:00
var row = new FlowLayoutWidget()
{
2017-09-13 18:18:11 -07:00
Name = "row",
VAnchor = VAnchor.Fit,
HAnchor = HAnchor.Stretch,
2017-11-17 17:46:58 -08:00
MinimumSize = new Vector2(0, 28),
BackgroundColor = settingsRow.BackgroundColor,
2017-11-17 17:46:58 -08:00
Border = settingsRow.Border,
Padding = settingsRow.Padding,
Margin = settingsRow.Margin,
};
2017-09-13 18:18:11 -07:00
column.AddChild(row);
2017-09-13 18:18:11 -07:00
var contentWrapper = new GuiWidget
{
2017-09-13 18:18:11 -07:00
Name = "contentWrapper",
HAnchor = HAnchor.Stretch,
VAnchor = VAnchor.Fit,
2018-07-20 00:11:27 -07:00
Padding = new BorderDouble(bottom: 10),
};
2017-09-13 18:18:11 -07:00
contentWrapper.AddChild(uiField.Content);
2017-09-13 18:18:11 -07:00
row.AddChild(contentWrapper);
2017-09-13 18:18:11 -07:00
return column;
}
else
{
return settingsRow;
}
}
else
{
settingsRow.Enabled = false;
return settingsRow;
2017-09-14 08:55:30 -07:00
}
}
public void FilterToOverrides(IEnumerable<PrinterSettingsLayer> layers)
{
foreach (var item in this.settingsRows)
{
item.widget.Visible = printer.Settings.IsOverride(item.settingData.SlicerConfigName, layers);
}
filteredItemsHeading.Visible = true;
settingsNameEdit.TextEditWidget.Visible = false;
this.TabBar.Visible = false;
settingsNameEdit.Visible = true;
this.ShowFilteredView();
}
2020-06-21 09:34:53 -07:00
private readonly List<SectionWidget> widgetsThatWereExpanded = new List<SectionWidget>();
private SystemWindow systemWindow;
private void Printer_SettingChanged(object s, StringEventArgs stringEvent)
2018-11-16 08:44:56 -08:00
{
var errors = printer.ValidateSettings(settingsContext);
if (stringEvent != null)
2018-11-16 08:44:56 -08:00
{
string settingsKey = stringEvent.Data;
if (this.allUiFields.TryGetValue(settingsKey, out UIField uifield))
{
string currentValue = settingsContext.GetValue(settingsKey);
if (uifield.Value != currentValue
|| settingsKey == "com_port")
{
uifield.SetValue(
currentValue,
userInitiated: false);
}
2019-01-16 09:05:04 -08:00
// Some fields are hosted outside of SettingsRows (e.g. Section Headers like Brim) and should skip validation updates
uifield.Row?.UpdateValidationState(errors);
2018-11-16 08:44:56 -08:00
}
}
}
private void ShowFilteredView()
{
widgetsThatWereExpanded.Clear();
// Show any section with visible SliceSettingsRows
foreach (var section in this.Descendants<SectionWidget>())
{
// HACK: Include parent visibility in mix as complex fields that return wrapped SliceSettingsRows will be visible and their parent will be hidden
section.Visible = section.Descendants<SliceSettingsRow>().Any(row => row.Visible && row.Parent.Visible);
if (!section.Checkbox.Checked)
{
widgetsThatWereExpanded.Add(section);
section.Checkbox.Checked = true;
}
}
// Show all tab containers
foreach (var tab in this.AllTabs)
{
tab.TabContent.Visible = true;
}
// Pull focus after filter
this.Focus();
}
public override void OnClosed(EventArgs e)
{
2018-11-16 08:44:56 -08:00
// Unregister listeners
printer.Settings.SettingChanged -= Printer_SettingChanged;
base.OnClosed(e);
}
public void ClearFilter()
{
foreach (var item in this.settingsRows)
{
// Show matching items
item.widget.Visible = true;
}
foreach (var tab in this.AllTabs)
{
2020-06-21 09:34:53 -07:00
tab.TabContent.Visible = tab == this.ActiveTab;
}
foreach (var section in this.Descendants<SectionWidget>())
{
// HACK: Include parent visibility in mix as complex fields that return wrapped SliceSettingsRows will be visible and their parent will be hidden
section.Visible = section.Descendants<SliceSettingsRow>().Any(row => row.Visible && row.Parent.Visible);
}
foreach (var section in widgetsThatWereExpanded)
{
section.Checkbox.Checked = false;
}
this.TabBar.Visible = true;
}
2015-04-08 15:20:10 -07:00
}
}