/* Copyright (c) 2016, 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. */ using MatterHackers.Agg; using MatterHackers.Agg.UI; using MatterHackers.Localizations; using MatterHackers.MatterControl.CustomWidgets; using MatterHackers.MatterControl.DataStorage; using MatterHackers.MatterControl.DataStorage.ClassicDB; using MatterHackers.VectorMath; using System; using System.Collections.Generic; using System.Collections.ObjectModel; using System.Linq; using System.Text.RegularExpressions; namespace MatterHackers.MatterControl.SlicerConfiguration { public class PresetsContext { public ObservableCollection PresetLayers { get; } public PrinterSettingsLayer PersistenceLayer { get; set; } public Action SetAsActive { get; set; } public Action DeleteLayer { get; set; } public NamedSettingsLayers LayerType { get; set; } public PresetsContext(ObservableCollection settingsLayers, PrinterSettingsLayer activeLayer) { this.PersistenceLayer = activeLayer; this.PresetLayers = settingsLayers; } } public class SlicePresetsWindow : SystemWindow { private static Regex numberMatch = new Regex("\\s*\\(\\d+\\)", RegexOptions.Compiled); private PresetsContext presetsContext; private MHTextEditWidget presetNameInput; private string initialPresetName = null; private GuiWidget middleRow; public SlicePresetsWindow(PresetsContext presetsContext) : base(641, 481) { this.presetsContext = presetsContext; this.AlwaysOnTopOfMain = true; this.Title = LocalizedString.Get("Slice Presets Editor"); this.MinimumSize = new Vector2(640, 480); this.AnchorAll(); var linkButtonFactory = new LinkButtonFactory() { fontSize = 8, textColor = ActiveTheme.Instance.SecondaryAccentColor }; var buttonFactory = new TextImageButtonFactory() { normalTextColor = ActiveTheme.Instance.PrimaryTextColor, hoverTextColor = ActiveTheme.Instance.PrimaryTextColor, disabledTextColor = ActiveTheme.Instance.PrimaryTextColor, pressedTextColor = ActiveTheme.Instance.PrimaryTextColor, borderWidth = 0 }; FlowLayoutWidget mainContainer = new FlowLayoutWidget(FlowDirection.TopToBottom) { Padding = new BorderDouble(3) }; mainContainer.AnchorAll(); middleRow = new GuiWidget(); middleRow.AnchorAll(); middleRow.AddChild(CreateSliceSettingsWidget(presetsContext.PersistenceLayer)); mainContainer.AddChild(GetTopRow()); mainContainer.AddChild(middleRow); mainContainer.AddChild(GetBottomRow(buttonFactory)); this.AddChild(mainContainer); BackgroundColor = ActiveTheme.Instance.PrimaryBackgroundColor; } private FlowLayoutWidget GetTopRow() { var topRow = new FlowLayoutWidget(hAnchor: HAnchor.ParentLeftRight) { Padding = new BorderDouble(0, 3) }; // Add label topRow.AddChild(new TextWidget("Preset Name:".Localize(), pointSize: 14) { TextColor = ActiveTheme.Instance.PrimaryTextColor, VAnchor = VAnchor.ParentCenter, Margin = new BorderDouble(right: 4) }); // Add textbox initialPresetName = presetsContext.PersistenceLayer.Name; presetNameInput = new MHTextEditWidget(initialPresetName) { HAnchor = HAnchor.ParentLeftRight }; presetNameInput.ActualTextEditWidget.EditComplete += (s, e) => { ActiveSliceSettings.Instance.SetValue(SettingsKey.layer_name, presetNameInput.Text, presetsContext.PersistenceLayer); SliceSettingsWidget.SettingChanged.CallEvents(null, new StringEventArgs(SettingsKey.layer_name)); }; topRow.AddChild(presetNameInput); // Return container return topRow; } private GuiWidget CreateSliceSettingsWidget(PrinterSettingsLayer persistenceLayer) { var layerCascade = new List { persistenceLayer, ActiveSliceSettings.Instance.OemLayer, ActiveSliceSettings.Instance.BaseLayer }; var settingsWidget = new SliceSettingsWidget(layerCascade, presetsContext.LayerType); settingsWidget.settingsControlBar.Visible = false; return settingsWidget; } private string GetNonCollidingName(string profileName, IEnumerable existingNames) { if (!existingNames.Contains(profileName)) { return profileName; } else { int currentIndex = 1; string possiblePrinterName; do { possiblePrinterName = String.Format("{0} ({1})", profileName, currentIndex++); } while (existingNames.Contains(possiblePrinterName)); return possiblePrinterName; } } private FlowLayoutWidget GetBottomRow(TextImageButtonFactory buttonFactory) { var container = new FlowLayoutWidget() { HAnchor = HAnchor.ParentLeftRight, Margin = new BorderDouble(top: 3) }; Button duplicateButton = buttonFactory.Generate("Duplicate".Localize()); duplicateButton.Click += (s, e) => { UiThread.RunOnIdle(() => { string sanitizedName = numberMatch.Replace(presetNameInput.Text, "").Trim(); string newProfileName = GetNonCollidingName(sanitizedName, presetsContext.PresetLayers.Select(preset => preset.ValueOrDefault(SettingsKey.layer_name))); var clonedLayer = presetsContext.PersistenceLayer.Clone(); clonedLayer.Name = newProfileName; presetsContext.PresetLayers.Add(clonedLayer); presetsContext.SetAsActive(clonedLayer.LayerID); presetsContext.PersistenceLayer = clonedLayer; middleRow.CloseAllChildren(); middleRow.AddChild(CreateSliceSettingsWidget(clonedLayer)); presetNameInput.Text = newProfileName; }); }; Button deleteButton = buttonFactory.Generate("Delete".Localize()); deleteButton.Click += (s, e) => { UiThread.RunOnIdle(() => { presetsContext.DeleteLayer(); this.Close(); }); }; Button closeButton = buttonFactory.Generate("Close".Localize()); closeButton.Click += (sender, e) => { this.CloseOnIdle(); }; container.AddChild(duplicateButton); container.AddChild(deleteButton); container.AddChild(new HorizontalSpacer()); container.AddChild(closeButton); return container; } private void SaveAs() { FileDialog.SaveFileDialog( new SaveFileDialogParams("Save Slice Preset|*" + ProfileManager.ConfigFileExtension) { FileName = presetNameInput.Text }, (saveParams) => { throw new NotImplementedException(); if (!string.IsNullOrEmpty(saveParams.FileName)) { // TODO: If we stil want this functionality, it should be moved to a common helper method off of SettingsLayer and resused throughout // // GenerateConfigFile(saveParams.FileName) ... //List configFileAsList = new List(); //foreach (KeyValuePair setting in windowController.ActivePresetLayer.settingsDictionary) //{ // string settingString = string.Format("{0} = {1}", setting.Value.Name, setting.Value.Value); // configFileAsList.Add(settingString); //} //string configFileAsString = string.Join("\n", configFileAsList.ToArray()); //FileStream fs = new FileStream(fileName, FileMode.Create); //StreamWriter sw = new System.IO.StreamWriter(fs); //sw.Write(configFileAsString); //sw.Close(); } }); } } }