229 lines
No EOL
8.3 KiB
C#
229 lines
No EOL
8.3 KiB
C#
using MatterHackers.Agg;
|
|
using MatterHackers.Agg.PlatformAbstract;
|
|
using MatterHackers.Agg.UI;
|
|
using MatterHackers.Localizations;
|
|
using MatterHackers.MatterControl.CustomWidgets;
|
|
using MatterHackers.MatterControl.PrinterCommunication;
|
|
using MatterHackers.MatterControl.SlicerConfiguration;
|
|
using MatterHackers.SerialPortCommunication.FrostedSerial;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text.RegularExpressions;
|
|
using MatterHackers.MatterControl.ConfigurationPage.PrintLeveling;
|
|
|
|
namespace MatterHackers.MatterControl.PrinterControls.PrinterConnections
|
|
{
|
|
public class SetupStepComPortManual : ConnectionWizardPage
|
|
{
|
|
private Button nextButton;
|
|
private Button connectButton;
|
|
private Button refreshButton;
|
|
private Button printerComPortHelpLink;
|
|
|
|
private bool printerComPortIsAvailable = false;
|
|
|
|
private TextWidget printerComPortHelpMessage;
|
|
private TextWidget printerComPortError;
|
|
|
|
private EventHandler unregisterEvents;
|
|
protected List<SerialPortIndexRadioButton> SerialPortButtonsList = new List<SerialPortIndexRadioButton>();
|
|
|
|
public SetupStepComPortManual()
|
|
{
|
|
FlowLayoutWidget printerComPortContainer = createComPortContainer();
|
|
contentRow.AddChild(printerComPortContainer);
|
|
|
|
//Construct buttons
|
|
nextButton = textImageButtonFactory.Generate("Done".Localize());
|
|
nextButton.Click += (s, e) => UiThread.RunOnIdle(Parent.Close);
|
|
nextButton.Visible = false;
|
|
|
|
connectButton = textImageButtonFactory.Generate("Connect".Localize());
|
|
connectButton.Click += ConnectButton_Click;
|
|
|
|
refreshButton = textImageButtonFactory.Generate("Refresh".Localize());
|
|
refreshButton.Click += (s, e) => UiThread.RunOnIdle(WizardWindow.ChangeToPage<SetupStepComPortManual>);
|
|
|
|
//Add buttons to buttonContainer
|
|
footerRow.AddChild(nextButton);
|
|
footerRow.AddChild(connectButton);
|
|
footerRow.AddChild(refreshButton);
|
|
footerRow.AddChild(new HorizontalSpacer());
|
|
footerRow.AddChild(cancelButton);
|
|
|
|
PrinterConnection.Instance.CommunicationStateChanged.RegisterEvent(onPrinterStatusChanged, ref unregisterEvents);
|
|
}
|
|
|
|
public override void OnClosed(ClosedEventArgs e)
|
|
{
|
|
unregisterEvents?.Invoke(this, null);
|
|
base.OnClosed(e);
|
|
}
|
|
|
|
private FlowLayoutWidget createComPortContainer()
|
|
{
|
|
FlowLayoutWidget container = new FlowLayoutWidget(FlowDirection.TopToBottom);
|
|
container.Margin = new BorderDouble(0);
|
|
container.VAnchor = VAnchor.ParentBottomTop;
|
|
BorderDouble elementMargin = new BorderDouble(top: 3);
|
|
|
|
string serialPortLabel = "Serial Port".Localize();
|
|
string serialPortLabelFull = string.Format("{0}:", serialPortLabel);
|
|
|
|
TextWidget comPortLabel = new TextWidget(serialPortLabelFull, 0, 0, 12);
|
|
comPortLabel.TextColor = ActiveTheme.Instance.PrimaryTextColor;
|
|
comPortLabel.Margin = new BorderDouble(0, 0, 0, 10);
|
|
comPortLabel.HAnchor = HAnchor.ParentLeftRight;
|
|
|
|
FlowLayoutWidget serialPortContainer = new FlowLayoutWidget(FlowDirection.TopToBottom);
|
|
CreateSerialPortControls(serialPortContainer, null);
|
|
|
|
FlowLayoutWidget comPortMessageContainer = new FlowLayoutWidget();
|
|
comPortMessageContainer.Margin = elementMargin;
|
|
comPortMessageContainer.HAnchor = HAnchor.ParentLeftRight;
|
|
|
|
printerComPortError = new TextWidget("Currently available serial ports.".Localize(), 0, 0, 10);
|
|
printerComPortError.TextColor = ActiveTheme.Instance.PrimaryTextColor;
|
|
printerComPortError.AutoExpandBoundsToText = true;
|
|
|
|
printerComPortHelpLink = linkButtonFactory.Generate("What's this?".Localize());
|
|
printerComPortHelpLink.Margin = new BorderDouble(left: 5);
|
|
printerComPortHelpLink.VAnchor = VAnchor.ParentBottom;
|
|
printerComPortHelpLink.Click += (s, e) => printerComPortHelpMessage.Visible = !printerComPortHelpMessage.Visible;
|
|
|
|
printerComPortHelpMessage = new TextWidget("The 'Serial Port' section lists all available serial\nports on your device. Changing which USB port the printer\nis conneted to may change the associated serial port.\n\nTip: If you are uncertain, unplug/plug in your printer\nand hit refresh. The new port that appears should be\nyour printer.".Localize(), 0, 0, 10);
|
|
printerComPortHelpMessage.TextColor = ActiveTheme.Instance.PrimaryTextColor;
|
|
printerComPortHelpMessage.Margin = new BorderDouble(top: 10);
|
|
printerComPortHelpMessage.Visible = false;
|
|
|
|
comPortMessageContainer.AddChild(printerComPortError);
|
|
comPortMessageContainer.AddChild(printerComPortHelpLink);
|
|
|
|
container.AddChild(comPortLabel);
|
|
container.AddChild(serialPortContainer);
|
|
container.AddChild(comPortMessageContainer);
|
|
container.AddChild(printerComPortHelpMessage);
|
|
|
|
container.HAnchor = HAnchor.ParentLeftRight;
|
|
return container;
|
|
}
|
|
|
|
private void onPrinterStatusChanged(object sender, EventArgs e)
|
|
{
|
|
if (PrinterConnection.Instance.PrinterIsConnected)
|
|
{
|
|
printerComPortHelpLink.Visible = false;
|
|
printerComPortError.TextColor = ActiveTheme.Instance.PrimaryTextColor;
|
|
printerComPortError.Text = "Connection succeeded".Localize() + "!";
|
|
nextButton.Visible = true;
|
|
connectButton.Visible = false;
|
|
UiThread.RunOnIdle(() => this?.Parent?.Close());
|
|
}
|
|
else if (PrinterConnection.Instance.CommunicationState != CommunicationStates.AttemptingToConnect)
|
|
{
|
|
printerComPortHelpLink.Visible = false;
|
|
printerComPortError.TextColor = RGBA_Bytes.Red;
|
|
printerComPortError.Text = "Uh-oh! Could not connect to printer.".Localize();
|
|
connectButton.Visible = true;
|
|
nextButton.Visible = false;
|
|
}
|
|
}
|
|
|
|
private void MoveToNextWidget(object state)
|
|
{
|
|
WizardWindow.ChangeToInstallDriverOrComPortOne();
|
|
}
|
|
|
|
private void ConnectButton_Click(object sender, EventArgs mouseEvent)
|
|
{
|
|
try
|
|
{
|
|
printerComPortHelpLink.Visible = false;
|
|
printerComPortError.TextColor = ActiveTheme.Instance.PrimaryTextColor;
|
|
|
|
printerComPortError.Text = "Attempting to connect".Localize() + "...";
|
|
printerComPortError.TextColor = ActiveTheme.Instance.PrimaryTextColor;
|
|
|
|
ActiveSliceSettings.Instance.Helpers.SetComPort(GetSelectedSerialPort());
|
|
PrinterConnection.Instance.ConnectToActivePrinter();
|
|
|
|
connectButton.Visible = false;
|
|
refreshButton.Visible = false;
|
|
}
|
|
catch
|
|
{
|
|
printerComPortHelpLink.Visible = false;
|
|
printerComPortError.TextColor = RGBA_Bytes.Red;
|
|
printerComPortError.Text = "Oops! Please select a serial port.".Localize();
|
|
}
|
|
}
|
|
|
|
protected void CreateSerialPortControls(FlowLayoutWidget comPortContainer, string activePrinterSerialPort)
|
|
{
|
|
int portIndex = 0;
|
|
string[] portsToCreate = FrostedSerialPort.GetPortNames();
|
|
|
|
// Add a radio button for each filtered port
|
|
foreach (string portName in portsToCreate)
|
|
{
|
|
SerialPortIndexRadioButton comPortOption = createComPortOption(portName, activePrinterSerialPort == portName);
|
|
if (comPortOption.Checked)
|
|
{
|
|
printerComPortIsAvailable = true;
|
|
}
|
|
|
|
SerialPortButtonsList.Add(comPortOption);
|
|
comPortContainer.AddChild(comPortOption);
|
|
|
|
portIndex++;
|
|
}
|
|
|
|
// Add a virtual entry for serial ports that were previously configured but are not currently connected
|
|
if (!printerComPortIsAvailable && activePrinterSerialPort != null)
|
|
{
|
|
SerialPortIndexRadioButton comPortOption = createComPortOption(activePrinterSerialPort, true);
|
|
comPortOption.Enabled = false;
|
|
|
|
comPortContainer.AddChild(comPortOption);
|
|
SerialPortButtonsList.Add(comPortOption);
|
|
portIndex++;
|
|
}
|
|
|
|
//If there are still no com ports show a message to that effect
|
|
if (portIndex == 0)
|
|
{
|
|
TextWidget comPortOption = new TextWidget("No COM ports available".Localize());
|
|
comPortOption.Margin = new BorderDouble(3, 6, 5, 6);
|
|
comPortOption.TextColor = ActiveTheme.Instance.PrimaryTextColor;
|
|
comPortContainer.AddChild(comPortOption);
|
|
}
|
|
}
|
|
|
|
private SerialPortIndexRadioButton createComPortOption(string portName, bool isActivePrinterPort)
|
|
{
|
|
SerialPortIndexRadioButton comPortOption = new SerialPortIndexRadioButton(portName, portName)
|
|
{
|
|
HAnchor = HAnchor.ParentLeft,
|
|
Margin = new BorderDouble(3, 3, 5, 3),
|
|
TextColor = ActiveTheme.Instance.PrimaryTextColor,
|
|
Checked = isActivePrinterPort
|
|
};
|
|
return comPortOption;
|
|
}
|
|
|
|
private string GetSelectedSerialPort()
|
|
{
|
|
foreach (SerialPortIndexRadioButton button in SerialPortButtonsList)
|
|
{
|
|
if (button.Checked)
|
|
{
|
|
return button.PortValue;
|
|
}
|
|
}
|
|
|
|
throw new Exception("Could not find a selected button.".Localize());
|
|
}
|
|
|
|
}
|
|
} |