389 lines
No EOL
12 KiB
C#
389 lines
No EOL
12 KiB
C#
/*
|
|
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.
|
|
*/
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Collections.ObjectModel;
|
|
using System.IO;
|
|
using System.Linq;
|
|
using MatterHackers.Agg;
|
|
using MatterHackers.Agg.Platform;
|
|
using MatterHackers.Agg.UI;
|
|
using MatterHackers.Localizations;
|
|
using MatterHackers.MatterControl.ActionBar;
|
|
using MatterHackers.MatterControl.CustomWidgets;
|
|
using MatterHackers.MatterControl.EeProm;
|
|
using MatterHackers.MatterControl.PrinterCommunication;
|
|
using MatterHackers.MatterControl.PrintHistory;
|
|
using MatterHackers.MatterControl.SlicerConfiguration;
|
|
using MatterHackers.VectorMath;
|
|
|
|
namespace MatterHackers.MatterControl.PartPreviewWindow
|
|
{
|
|
public class PrinterActionsBar : OverflowBar
|
|
{
|
|
private PrinterConfig printer;
|
|
private EventHandler unregisterEvents;
|
|
private static EePromMarlinWindow openEePromMarlinWidget = null;
|
|
private static EePromRepetierWindow openEePromRepetierWidget = null;
|
|
private string noEepromMappingMessage = "Oops! There is no eeprom mapping for your printer's firmware.".Localize() + "\n\n" + "You may need to wait a minute for your printer to finish initializing.".Localize();
|
|
private string noEepromMappingTitle = "Warning - No EEProm Mapping".Localize();
|
|
|
|
private PrinterTabPage printerTabPage;
|
|
|
|
internal GuiWidget sliceButton;
|
|
|
|
private RadioIconButton layers2DButton;
|
|
private RadioIconButton layers3DButton;
|
|
internal RadioIconButton modelViewButton;
|
|
|
|
public PrinterActionsBar(PrinterConfig printer, PrinterTabPage printerTabPage, ThemeConfig theme)
|
|
: base(theme)
|
|
{
|
|
this.printer = printer;
|
|
this.printerTabPage = printerTabPage;
|
|
|
|
this.HAnchor = HAnchor.Stretch;
|
|
this.VAnchor = VAnchor.Fit;
|
|
|
|
var defaultMargin = theme.ButtonSpacing;
|
|
|
|
// add the reset button first (if there is one)
|
|
if (ActiveSliceSettings.Instance.GetValue<bool>(SettingsKey.show_reset_connection))
|
|
{
|
|
var resetConnectionButton = new TextIconButton(
|
|
"Reset".Localize(),
|
|
AggContext.StaticData.LoadIcon("e_stop.png", 14, 14, IconColor.Theme),
|
|
theme)
|
|
{
|
|
ToolTipText = "Reboots the firmware on the controller".Localize(),
|
|
Margin = defaultMargin
|
|
};
|
|
resetConnectionButton.Click += (s, e) =>
|
|
{
|
|
UiThread.RunOnIdle(printer.Connection.RebootBoard);
|
|
};
|
|
this.AddChild(resetConnectionButton);
|
|
}
|
|
|
|
this.AddChild(new PrinterConnectButton(printer, theme));
|
|
this.AddChild(new PrintButton(printerTabPage, printer, theme));
|
|
|
|
var sliceButton = new SliceButton(printer, printerTabPage, theme)
|
|
{
|
|
Name = "Generate Gcode Button",
|
|
Margin = theme.ButtonSpacing,
|
|
};
|
|
this.AddChild(sliceButton);
|
|
|
|
// Add vertical separator
|
|
this.AddChild(new VerticalLine(50)
|
|
{
|
|
Margin = new BorderDouble(3, 0),
|
|
VAnchor = VAnchor.Absolute,
|
|
Height = theme.ButtonHeight,
|
|
});
|
|
|
|
var buttonGroupB = new ObservableCollection<GuiWidget>();
|
|
|
|
var iconPath = Path.Combine("ViewTransformControls", "model.png");
|
|
modelViewButton = new RadioIconButton(AggContext.StaticData.LoadIcon(iconPath, 16, 16, IconColor.Theme), theme)
|
|
{
|
|
SiblingRadioButtonList = buttonGroupB,
|
|
Name = "Model View Button",
|
|
Checked = printer?.ViewState.ViewMode == PartViewMode.Model || printer == null,
|
|
ToolTipText = "Model View".Localize(),
|
|
Margin = theme.ButtonSpacing
|
|
};
|
|
modelViewButton.Click += SwitchModes_Click;
|
|
buttonGroupB.Add(modelViewButton);
|
|
AddChild(modelViewButton);
|
|
|
|
iconPath = Path.Combine("ViewTransformControls", "gcode_3d.png");
|
|
layers3DButton = new RadioIconButton(AggContext.StaticData.LoadIcon(iconPath, 16, 16, IconColor.Theme), theme)
|
|
{
|
|
SiblingRadioButtonList = buttonGroupB,
|
|
Name = "Layers3D Button",
|
|
Checked = printer?.ViewState.ViewMode == PartViewMode.Layers3D,
|
|
ToolTipText = "3D Layer View".Localize(),
|
|
Margin = theme.ButtonSpacing
|
|
};
|
|
layers3DButton.Click += SwitchModes_Click;
|
|
buttonGroupB.Add(layers3DButton);
|
|
|
|
if (!UserSettings.Instance.IsTouchScreen)
|
|
{
|
|
this.AddChild(layers3DButton);
|
|
}
|
|
|
|
iconPath = Path.Combine("ViewTransformControls", "gcode_2d.png");
|
|
layers2DButton = new RadioIconButton(AggContext.StaticData.LoadIcon(iconPath, 16, 16, IconColor.Theme), theme)
|
|
{
|
|
SiblingRadioButtonList = buttonGroupB,
|
|
Name = "Layers2D Button",
|
|
Checked = printer?.ViewState.ViewMode == PartViewMode.Layers2D,
|
|
ToolTipText = "2D Layer View".Localize(),
|
|
Margin = theme.ButtonSpacing,
|
|
};
|
|
layers2DButton.Click += SwitchModes_Click;
|
|
buttonGroupB.Add(layers2DButton);
|
|
this.AddChild(layers2DButton);
|
|
|
|
//// put in the detail message
|
|
//var printerConnectionDetail = new TextWidget("")
|
|
//{
|
|
// Margin = new BorderDouble(5, 0),
|
|
// TextColor = ActiveTheme.Instance.PrimaryTextColor,
|
|
// AutoExpandBoundsToText = true,
|
|
// PointSize = 8
|
|
//};
|
|
//printer.Connection.PrintingStateChanged.RegisterEvent((s, e) =>
|
|
//{
|
|
// printerConnectionDetail.Text = printer.PrinterConnectionStatus;
|
|
//}, ref unregisterEvents);
|
|
//this.AddChild(printerConnectionDetail);
|
|
|
|
this.AddChild(new HorizontalSpacer());
|
|
|
|
bool shareTemp = printer.Settings.GetValue<bool>(SettingsKey.extruders_share_temperature);
|
|
int extruderCount = shareTemp ? 1 : printer.Settings.GetValue<int>(SettingsKey.extruder_count);
|
|
|
|
if (!printer.Settings.GetValue<bool>(SettingsKey.sla_printer))
|
|
{
|
|
for (int extruderIndex = 0; extruderIndex < extruderCount; extruderIndex++)
|
|
{
|
|
this.AddChild(new TemperatureWidgetHotend(printer, extruderIndex, theme.MenuButtonFactory)
|
|
{
|
|
Margin = new BorderDouble(right: 10)
|
|
});
|
|
}
|
|
}
|
|
|
|
if (printer.Settings.GetValue<bool>(SettingsKey.has_heated_bed))
|
|
{
|
|
this.AddChild(new TemperatureWidgetBed(printer));
|
|
}
|
|
|
|
this.OverflowButton.Name = "Printer Overflow Menu";
|
|
this.ExtendOverflowMenu = (popupMenu) =>
|
|
{
|
|
this.GeneratePrinterOverflowMenu(popupMenu, theme);
|
|
};
|
|
|
|
printer.ViewState.ViewModeChanged += (s, e) =>
|
|
{
|
|
if (e.ViewMode == PartViewMode.Layers2D)
|
|
{
|
|
this.layers2DButton.Checked = true;
|
|
}
|
|
else if (e.ViewMode == PartViewMode.Layers3D)
|
|
{
|
|
layers3DButton.Checked = true;
|
|
}
|
|
else
|
|
{
|
|
modelViewButton.Checked = true;
|
|
}
|
|
};
|
|
|
|
printer.Connection.ConnectionSucceeded.RegisterEvent((s, e) =>
|
|
{
|
|
UiThread.RunOnIdle(() =>
|
|
{
|
|
PrintRecovery.CheckIfNeedToRecoverPrint(printer);
|
|
});
|
|
}, ref unregisterEvents);
|
|
}
|
|
|
|
private void SwitchModes_Click(object sender, MouseEventArgs e)
|
|
{
|
|
if (sender is GuiWidget widget)
|
|
{
|
|
if (widget.Name == "Layers2D Button")
|
|
{
|
|
printer.ViewState.ViewMode = PartViewMode.Layers2D;
|
|
printer.Bed.EnsureGCodeLoaded();
|
|
}
|
|
else if (widget.Name == "Layers3D Button")
|
|
{
|
|
printer.ViewState.ViewMode = PartViewMode.Layers3D;
|
|
printer.Bed.EnsureGCodeLoaded();
|
|
}
|
|
else
|
|
{
|
|
printer.ViewState.ViewMode = PartViewMode.Model;
|
|
}
|
|
}
|
|
}
|
|
|
|
public override void AddChild(GuiWidget childToAdd, int indexInChildrenList = -1)
|
|
{
|
|
childToAdd.VAnchor = VAnchor.Center;
|
|
base.AddChild(childToAdd, indexInChildrenList);
|
|
}
|
|
|
|
public override void OnClosed(ClosedEventArgs e)
|
|
{
|
|
unregisterEvents?.Invoke(this, null);
|
|
base.OnClosed(e);
|
|
}
|
|
|
|
private void GeneratePrinterOverflowMenu(PopupMenu popupMenu, ThemeConfig theme)
|
|
{
|
|
var menuActions = new List<NamedAction>()
|
|
{
|
|
new NamedAction()
|
|
{
|
|
Title = "Import Printer Settings".Localize() + "...",
|
|
Action = importMaterialSettingsButton_Click
|
|
},
|
|
new NamedAction()
|
|
{
|
|
Icon = AggContext.StaticData.LoadIcon("memory_16x16.png", 16, 16),
|
|
Title = "Configure EEProm".Localize(),
|
|
Action = configureEePromButton_Click
|
|
},
|
|
//new NamedAction()
|
|
//{
|
|
// Title = "Rename Printer".Localize(),
|
|
// Action = () =>
|
|
// {
|
|
// DialogWindow.Show(
|
|
// new InputBoxPage(
|
|
// "Rename Printer".Localize(),
|
|
// "Name".Localize(),
|
|
// printer.Settings.GetValue(SettingsKey.printer_name),
|
|
// "Enter New Name Here".Localize(),
|
|
// "Rename".Localize(),
|
|
// (newName) =>
|
|
// {
|
|
// if (!string.IsNullOrEmpty(newName))
|
|
// {
|
|
// printer.Settings.SetValue(SettingsKey.printer_name, newName);
|
|
// }
|
|
// }));
|
|
// }
|
|
//},
|
|
new NamedBoolAction()
|
|
{
|
|
Title = "Configure Printer".Localize(),
|
|
Action = () => { },
|
|
GetIsActive = () => printer.ViewState.ConfigurePrinterVisible,
|
|
SetIsActive = (value) => printer.ViewState.ConfigurePrinterVisible = value
|
|
},
|
|
new NamedAction() { Title = "----" },
|
|
new NamedAction()
|
|
{
|
|
Title = "Delete Printer".Localize(),
|
|
Action = () =>
|
|
{
|
|
StyledMessageBox.ShowMessageBox(
|
|
(doDelete) =>
|
|
{
|
|
if (doDelete)
|
|
{
|
|
printer.Settings.Helpers.SetMarkedForDelete(true);
|
|
}
|
|
},
|
|
"Are you sure you want to delete your currently selected printer?".Localize(),
|
|
"Delete Printer?".Localize(),
|
|
StyledMessageBox.MessageType.YES_NO,
|
|
"Delete Printer".Localize());
|
|
}
|
|
}
|
|
};
|
|
|
|
theme.CreateMenuItems(popupMenu, menuActions);
|
|
}
|
|
|
|
private void importMaterialSettingsButton_Click()
|
|
{
|
|
UiThread.RunOnIdle(() =>
|
|
{
|
|
AggContext.FileDialogs.OpenFileDialog(
|
|
new OpenFileDialogParams("settings files|*.printer"),
|
|
(dialogParams) =>
|
|
{
|
|
if (!string.IsNullOrEmpty(dialogParams.FileName))
|
|
{
|
|
DialogWindow.Show(new SelectPartsOfPrinterToImport(dialogParams.FileName));
|
|
}
|
|
});
|
|
});
|
|
}
|
|
|
|
private void configureEePromButton_Click()
|
|
{
|
|
UiThread.RunOnIdle(() =>
|
|
{
|
|
#if false // This is to force the creation of the repetier window for testing when we don't have repetier firmware.
|
|
new MatterHackers.MatterControl.EeProm.EePromRepetierWidget();
|
|
#else
|
|
switch (printer.Connection.FirmwareType)
|
|
{
|
|
case FirmwareTypes.Repetier:
|
|
if (openEePromRepetierWidget != null)
|
|
{
|
|
openEePromRepetierWidget.BringToFront();
|
|
}
|
|
else
|
|
{
|
|
openEePromRepetierWidget = new EePromRepetierWindow(printer.Connection);
|
|
openEePromRepetierWidget.Closed += (RepetierWidget, RepetierEvent) =>
|
|
{
|
|
openEePromRepetierWidget = null;
|
|
};
|
|
}
|
|
break;
|
|
|
|
case FirmwareTypes.Marlin:
|
|
if (openEePromMarlinWidget != null)
|
|
{
|
|
openEePromMarlinWidget.BringToFront();
|
|
}
|
|
else
|
|
{
|
|
openEePromMarlinWidget = new EePromMarlinWindow(printer.Connection);
|
|
openEePromMarlinWidget.Closed += (marlinWidget, marlinEvent) =>
|
|
{
|
|
openEePromMarlinWidget = null;
|
|
};
|
|
}
|
|
break;
|
|
|
|
default:
|
|
printer.Connection.QueueLine("M115");
|
|
StyledMessageBox.ShowMessageBox(noEepromMappingMessage, noEepromMappingTitle, StyledMessageBox.MessageType.OK);
|
|
break;
|
|
}
|
|
#endif
|
|
});
|
|
}
|
|
}
|
|
} |