Improve support for StagedSetupWizards

This commit is contained in:
jlewin 2019-04-04 17:18:12 -07:00
parent 4f3fbba14d
commit 50e2419d72
5 changed files with 141 additions and 41 deletions

View file

@ -72,30 +72,7 @@ namespace MatterHackers.MatterControl.PrinterControls
{
UiThread.RunOnIdle(() =>
{
DialogWindow.Show(
"Printer Calibration".Localize(),
new Vector2(1200, 700),
new ISetupWizard[]
{
new PrintLevelingWizard(printer),
new ProbeCalibrationWizard(printer),
new XyCalibrationWizard(printer, 1)
},
() =>
{
var homePage = new WizardSummaryPage()
{
HeaderText = "Printer Setup & Calibration".Localize()
};
homePage.ContentRow.AddChild(
new WrappedTextWidget(
@"Select the calibration task on the left to continue".Replace("\r\n", "\n"),
pointSize: theme.DefaultFontSize,
textColor: theme.TextColor));
return homePage;
});
DialogWindow.Show(new PrinterCalibrationWizard(printer, theme));
});
};
settingsRow.AddChild(runWizardButton);

View file

@ -0,0 +1,43 @@
/*
Copyright (c) 2019, 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 MatterHackers.VectorMath;
namespace MatterHackers.MatterControl
{
public interface IStagedSetupWizard
{
IEnumerable<ISetupWizard> Stages { get; }
string Title { get; }
Vector2 WindowSize { get; }
Func<DialogPage> HomePageGenerator { get; }
}
}

View file

@ -0,0 +1,84 @@
/*
Copyright (c) 2019, 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 MatterHackers.Agg.UI;
using MatterHackers.Localizations;
using MatterHackers.MatterControl.ConfigurationPage.PrintLeveling;
using MatterHackers.MatterControl.PrinterControls;
using MatterHackers.VectorMath;
namespace MatterHackers.MatterControl
{
public class PrinterCalibrationWizard : IStagedSetupWizard
{
public PrinterCalibrationWizard(PrinterConfig printer, ThemeConfig theme)
{
this.Stages = new ISetupWizard[]
{
new PrintLevelingWizard(printer),
new ProbeCalibrationWizard(printer),
new XyCalibrationWizard(printer, 1)
};
this.HomePageGenerator = () =>
{
var homePage = new WizardSummaryPage()
{
HeaderText = "Printer Setup & Calibration".Localize()
};
homePage.ContentRow.AddChild(
new WrappedTextWidget(
@"Select the calibration task on the left to continue".Replace("\r\n", "\n"),
pointSize: theme.DefaultFontSize,
textColor: theme.TextColor));
return homePage;
};
}
public string Title { get; } = "Printer Calibration".Localize();
public Vector2 WindowSize { get; } = new Vector2(1200, 700);
public IEnumerable<ISetupWizard> Stages { get; }
public Func<DialogPage> HomePageGenerator { get; }
public static bool SetupRequired(PrinterConfig printer)
{
return LevelingValidation.NeedsToBeRun(printer) // PrintLevelingWizard
|| ProbeCalibrationWizard.NeedsToBeRun(printer)
|| LoadFilamentWizard.NeedsToBeRun0(printer)
|| LoadFilamentWizard.NeedsToBeRun1(printer);
}
}
}

View file

@ -87,19 +87,17 @@ namespace MatterHackers.MatterControl
return wizardWindow;
}
public static DialogWindow Show(string title, Vector2 windowSize, IEnumerable<ISetupWizard> stages, Func<DialogPage> homePageGenerator)
public static DialogWindow Show(IStagedSetupWizard setupWizard)
{
var wizardStages = stages.ToList();
var type = homePageGenerator.GetType();
var type = setupWizard.GetType();
var homePage = homePageGenerator();
var wizardWindow = new StagedSetupWindow(title, stages, homePageGenerator);
var wizardWindow = new StagedSetupWindow(setupWizard);
wizardWindow.Closed += (s, e) => allWindows.Remove(type);
allWindows[type] = wizardWindow;
wizardWindow.Size = windowSize;
wizardWindow.Size = setupWizard.WindowSize;
var homePage = setupWizard.HomePageGenerator();
SetSizeAndShow(wizardWindow, homePage);
wizardWindow.ChangeToPage(homePage);

View file

@ -37,8 +37,6 @@ namespace MatterHackers.MatterControl
{
public class StagedSetupWindow : DialogWindow
{
private IEnumerable<ISetupWizard> stages;
private Func<DialogPage> homePageGenerator;
private FlowLayoutWidget leftPanel;
private DialogPage activePage;
private GuiWidget rightPanel;
@ -46,6 +44,7 @@ namespace MatterHackers.MatterControl
private ISetupWizard _activeStage;
private Dictionary<ISetupWizard, WizardStageRow> stageButtons = new Dictionary<ISetupWizard, WizardStageRow>();
private IStagedSetupWizard setupWizard;
public ISetupWizard ActiveStage
{
@ -82,10 +81,9 @@ namespace MatterHackers.MatterControl
}
}
public StagedSetupWindow(string title, IEnumerable<ISetupWizard> stages, Func<DialogPage> homePageGenerator)
public StagedSetupWindow(IStagedSetupWizard setupWizard)
{
this.stages = stages;
this.homePageGenerator = homePageGenerator;
this.setupWizard = setupWizard;
var theme = AppContext.Theme;
@ -105,7 +103,7 @@ namespace MatterHackers.MatterControl
});
int i = 1;
foreach (var stage in stages.Where(s => s.Visible))
foreach (var stage in setupWizard.Stages.Where(s => s.Visible))
{
var stageWidget = new WizardStageRow(
$"{i++}. {stage.Title}",
@ -129,7 +127,7 @@ namespace MatterHackers.MatterControl
VAnchor = VAnchor.Stretch
});
this.Title = title;
this.Title = setupWizard.Title;
// Multi-part wizard should not try to resize per page
this.UseChildWindowSize = false;
@ -159,7 +157,7 @@ namespace MatterHackers.MatterControl
public void NextIncompleteStage()
{
ISetupWizard nextStage = stages.FirstOrDefault(s => s.SetupRequired);
ISetupWizard nextStage = setupWizard.Stages.FirstOrDefault(s => s.SetupRequired);
if (nextStage != null)
{
@ -173,8 +171,8 @@ namespace MatterHackers.MatterControl
public override void ClosePage()
{
// Move to the summary/home page
this.ChangeToPage(homePageGenerator());
// Construct and move to the summary/home page
this.ChangeToPage(setupWizard.HomePageGenerator());
this.ActiveStage = null;
}