mattercontrol/original/MatterControlLib/SettingsManagement/UpdateSettingsPage.cs

218 lines
7.3 KiB
C#
Raw Permalink Normal View History

/*
Copyright (c) 2018, 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.
*/
using System.Linq;
using MatterHackers.Agg;
using MatterHackers.Agg.UI;
using MatterHackers.Localizations;
using MatterHackers.MatterControl.ConfigurationPage;
using MatterHackers.MatterControl.CustomWidgets;
2020-08-29 09:00:09 -07:00
using MatterHackers.MatterControl.SettingsManagement;
using MatterHackers.MatterControl.SlicerConfiguration;
using MatterHackers.VectorMath;
namespace MatterHackers.MatterControl
{
public partial class UpdateSettingsPage : DialogPage
{
private PrinterConfig printer;
public UpdateSettingsPage(PrinterConfig printer)
: base("Close".Localize())
{
this.printer = printer;
this.AlwaysOnTopOfMain = true;
this.WindowTitle = this.HeaderText = "Update Settings".Localize();
this.WindowSize = new Vector2(700 * GuiWidget.DeviceScale, 600 * GuiWidget.DeviceScale);
contentRow.Padding = theme.DefaultContainerPadding;
contentRow.Padding = 0;
contentRow.BackgroundColor = Color.Transparent;
2020-08-29 09:40:45 -07:00
AddAllContent();
}
private void AddAllContent()
{
contentRow.CloseChildren();
2020-08-29 09:40:45 -07:00
GuiWidget settingsColumn;
2020-08-29 09:00:09 -07:00
var settingsAreaScrollBox = new ScrollableWidget(true);
settingsAreaScrollBox.ScrollArea.HAnchor |= HAnchor.Stretch;
settingsAreaScrollBox.AnchorAll();
settingsAreaScrollBox.BackgroundColor = theme.MinimalShade;
contentRow.AddChild(settingsAreaScrollBox);
settingsColumn = new FlowLayoutWidget(FlowDirection.TopToBottom)
{
2020-08-29 09:00:09 -07:00
HAnchor = HAnchor.MaxFitOrStretch
};
2020-08-29 09:00:09 -07:00
settingsAreaScrollBox.AddChild(settingsColumn);
2020-08-29 09:00:09 -07:00
if (ProfileManager.GetOemSettingsNeedingUpdate(printer).Any())
{
2023-04-27 11:45:58 -07:00
AddUpgradeInfoPanel(settingsColumn);
2020-08-29 09:00:09 -07:00
}
else
{
settingsColumn.AddChild(new WrappedTextWidget("No setting currently need to be updated.".Localize(), pointSize: 11)
{
2020-08-29 09:40:45 -07:00
Margin = new BorderDouble(5),
2020-08-29 09:00:09 -07:00
TextColor = theme.TextColor
});
}
// Enforce consistent SectionWidget spacing and last child borders
foreach (var section in settingsColumn.Children<SectionWidget>())
{
section.Margin = new BorderDouble(0, 10, 0, 0);
if (section.ContentPanel.Children.LastOrDefault() is SettingsItem lastRow)
{
// If we're in a contentPanel that has SettingsItems...
// Clear the last items bottom border
lastRow.Border = lastRow.Border.Clone(bottom: 0);
// Set a common margin on the parent container
section.ContentPanel.Margin = new BorderDouble(2, 0);
}
}
}
2023-04-27 11:45:58 -07:00
private async void AddUpgradeInfoPanel(GuiWidget generalPanel)
{
var make = printer.Settings.GetValue(SettingsKey.make);
var model = printer.Settings.GetValue(SettingsKey.model);
var message = $"The default settings for the {make} {model} have been updated.";
message += "\n" + "Below you can find a list of each setting that has changed.".Localize();
message += "\n" + "Updating a default setting will not change any override that you have applied.".Localize();
generalPanel.AddChild(new WrappedTextWidget(message, pointSize: 11)
{
2020-08-29 09:00:09 -07:00
Margin = new BorderDouble(5, 15),
TextColor = theme.TextColor
});
2020-08-29 09:00:09 -07:00
int tabIndex = 0;
2020-08-29 09:00:09 -07:00
var serverOemSettings = await ProfileManager.LoadOemSettingsAsync(OemSettings.Instance.OemProfiles[make][model],
make,
model);
2020-08-29 09:00:09 -07:00
var oemPrinter = new PrinterConfig(serverOemSettings);
2020-08-29 09:00:09 -07:00
foreach (var setting in ProfileManager.GetOemSettingsNeedingUpdate(printer))
{
2020-08-29 09:00:09 -07:00
void AddSetting(PrinterConfig printer, string description, string key, Color overlay)
{
2020-08-29 09:40:45 -07:00
generalPanel.AddChild(new TextWidget(description, pointSize: 11)
{
// HAnchor = HAnchor.Center,
Margin = new BorderDouble(5),
TextColor = theme.TextColor
});
var under = new GuiWidget()
2020-08-29 09:00:09 -07:00
{
HAnchor = HAnchor.Stretch,
VAnchor = VAnchor.Fit
};
2020-08-29 09:40:45 -07:00
var topToBottom = new FlowLayoutWidget(FlowDirection.TopToBottom)
2020-08-29 09:00:09 -07:00
{
HAnchor = HAnchor.Stretch
};
var settingsContext = new SettingsContext(printer, null, NamedSettingsLayers.OEMSettings);
2020-08-29 09:40:45 -07:00
topToBottom.AddChild(SliceSettingsTabView.CreateItemRow(
2020-08-29 09:00:09 -07:00
PrinterSettings.SettingsData[key],
settingsContext,
printer,
theme,
ref tabIndex));
2020-08-29 09:40:45 -07:00
var cover = new GuiWidget()
{
2020-08-29 09:00:09 -07:00
BackgroundColor = overlay,
HAnchor = HAnchor.Stretch,
VAnchor = VAnchor.Stretch
};
2020-08-29 09:40:45 -07:00
generalPanel.AddChild(under).AddChild(topToBottom);
under.AddChild(cover);
}
if (PrinterSettings.SettingsData.ContainsKey(setting.key))
{
var settingData = PrinterSettings.SettingsData[setting.key];
2020-08-30 13:02:46 -07:00
var currentText = "Current Default".Localize();
var group = settingData.OrganizerGroup;
var category = group.Category;
2020-08-30 13:02:46 -07:00
currentText += ": " + category.Name + " > " + group.Name + " > " + settingData.PresentationName;
AddSetting(printer, currentText, setting.key, theme.SlightShade);
AddSetting(oemPrinter, "Will be updated to:".Localize(), setting.key, Color.Transparent);
var buttonContainer = new FlowLayoutWidget(FlowDirection.RightToLeft)
{
HAnchor = HAnchor.Stretch,
Margin = new BorderDouble(0, 25, 0, 3),
Border = new BorderDouble(0, 1, 0, 0),
BorderColor = theme.MinimalShade,
};
generalPanel.AddChild(buttonContainer);
var updateButton = new ThemedTextButton("Update Setting".Localize(), theme)
{
Margin = new BorderDouble(0, 3, 20, 0),
Name = setting.key + " Update",
};
theme.ApplyPrimaryActionStyle(updateButton);
2020-08-29 09:40:45 -07:00
buttonContainer.AddChild(updateButton);
updateButton.Click += (s, e) =>
2020-08-29 09:40:45 -07:00
{
var scrollAmount = this.contentRow.Descendants<ScrollableWidget>().First().ScrollPositionFromTop;
printer.Settings.SetValue(setting.key, setting.newValue, printer.Settings.OemLayer);
AddAllContent();
UiThread.RunOnIdle(() =>
{
this.contentRow.Descendants<ScrollableWidget>().First().ScrollPositionFromTop = scrollAmount;
});
};
}
2020-08-29 09:00:09 -07:00
}
}
}
}