395 lines
No EOL
12 KiB
C#
395 lines
No EOL
12 KiB
C#
/*
|
|
Copyright (c) 2015, Lars Brubaker
|
|
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.PrinterCommunication;
|
|
using MatterHackers.MatterControl.PrintLibrary;
|
|
using MatterHackers.MatterControl.PrintLibrary.Provider;
|
|
using MatterHackers.MatterControl.PrintQueue;
|
|
using MatterHackers.MatterControl.SlicerConfiguration;
|
|
using MatterHackers.VectorMath;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Diagnostics;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MatterHackers.MatterControl
|
|
{
|
|
public abstract class ApplicationView : GuiWidget
|
|
{
|
|
public abstract void AddElements();
|
|
}
|
|
|
|
public class TouchscreenView : ApplicationView
|
|
{
|
|
private FlowLayoutWidget TopContainer;
|
|
private TouchscreenTabView touchscreenTabView;
|
|
private QueueDataView queueDataView;
|
|
private GuiWidget menuSeparator;
|
|
private PrintProgressBar progressBar;
|
|
private bool topIsHidden = false;
|
|
|
|
public TouchscreenView()
|
|
{
|
|
AddElements();
|
|
this.AnchorAll();
|
|
}
|
|
|
|
public void ToggleTopContainer()
|
|
{
|
|
topIsHidden = !topIsHidden;
|
|
progressBar.WidgetIsExtended = !progressBar.WidgetIsExtended;
|
|
|
|
//To do - Animate this (KP)
|
|
this.menuSeparator.Visible = this.TopContainer.Visible;
|
|
this.TopContainer.Visible = !this.TopContainer.Visible;
|
|
}
|
|
|
|
public override void AddElements()
|
|
{
|
|
topIsHidden = false;
|
|
this.BackgroundColor = ActiveTheme.Instance.PrimaryBackgroundColor;
|
|
|
|
FlowLayoutWidget container = new FlowLayoutWidget(FlowDirection.TopToBottom);
|
|
container.AnchorAll();
|
|
|
|
TopContainer = new FlowLayoutWidget(FlowDirection.TopToBottom);
|
|
TopContainer.HAnchor = HAnchor.ParentLeftRight;
|
|
|
|
#if !__ANDROID__
|
|
// The application menu bar, which is suppressed on Android
|
|
ApplicationMenuRow menuRow = new ApplicationMenuRow();
|
|
TopContainer.AddChild(menuRow);
|
|
#endif
|
|
|
|
menuSeparator = new GuiWidget();
|
|
menuSeparator.Height = 12;
|
|
menuSeparator.HAnchor = HAnchor.ParentLeftRight;
|
|
menuSeparator.MinimumSize = new Vector2(0, 12);
|
|
menuSeparator.Visible = false;
|
|
|
|
queueDataView = new QueueDataView();
|
|
TopContainer.AddChild(new ActionBarPlus(queueDataView));
|
|
|
|
container.AddChild(TopContainer);
|
|
|
|
progressBar = new PrintProgressBar();
|
|
|
|
container.AddChild(progressBar);
|
|
container.AddChild(menuSeparator);
|
|
touchscreenTabView = new TouchscreenTabView(queueDataView);
|
|
|
|
container.AddChild(touchscreenTabView);
|
|
this.AddChild(container);
|
|
}
|
|
}
|
|
|
|
public class DesktopView : ApplicationView
|
|
{
|
|
private WidescreenPanel widescreenPanel;
|
|
|
|
public DesktopView()
|
|
{
|
|
AddElements();
|
|
this.AnchorAll();
|
|
}
|
|
|
|
public override void AddElements()
|
|
{
|
|
this.BackgroundColor = ActiveTheme.Instance.PrimaryBackgroundColor;
|
|
|
|
var container = new FlowLayoutWidget(FlowDirection.TopToBottom);
|
|
container.AnchorAll();
|
|
|
|
#if !__ANDROID__
|
|
// The application menu bar, which is suppressed on Android
|
|
var menuRow = new ApplicationMenuRow();
|
|
container.AddChild(menuRow);
|
|
#endif
|
|
|
|
var menuSeparator = new GuiWidget()
|
|
{
|
|
BackgroundColor = new RGBA_Bytes(200, 200, 200),
|
|
Height = 2,
|
|
HAnchor = HAnchor.ParentLeftRight,
|
|
Margin = new BorderDouble(3, 6, 3, 3)
|
|
};
|
|
container.AddChild(menuSeparator);
|
|
|
|
widescreenPanel = new WidescreenPanel();
|
|
container.AddChild(widescreenPanel);
|
|
|
|
using (new PerformanceTimer("ReloadAll", "AddChild"))
|
|
{
|
|
this.AddChild(container);
|
|
}
|
|
}
|
|
}
|
|
|
|
public class ApplicationController
|
|
{
|
|
private static ApplicationController globalInstance;
|
|
public RootedObjectEventHandler AdvancedControlsPanelReloading = new RootedObjectEventHandler();
|
|
public RootedObjectEventHandler CloudSyncStatusChanged = new RootedObjectEventHandler();
|
|
public RootedObjectEventHandler DoneReloadingAll = new RootedObjectEventHandler();
|
|
public RootedObjectEventHandler PluginsLoaded = new RootedObjectEventHandler();
|
|
|
|
public static Action LoginAction;
|
|
public static Action LogoutAction;
|
|
public static Func<string> GetSessionInfo;
|
|
|
|
public static Func<string, Task<Dictionary<string, string>>> GetProfileHistory;
|
|
public static Func<PrinterInfo,string, Task> GetPrinterProfile;
|
|
public static Func<Task> SyncPrinterProfiles;
|
|
|
|
public SlicePresetsWindow EditMaterialPresetsWindow { get; set; }
|
|
|
|
public SlicePresetsWindow EditQualityPresetsWindow { get; set; }
|
|
|
|
public ApplicationView MainView;
|
|
|
|
public event EventHandler ApplicationClosed;
|
|
|
|
private event EventHandler unregisterEvents;
|
|
|
|
public bool WidescreenMode { get; set; }
|
|
|
|
public ApplicationController()
|
|
{
|
|
//Name = "MainSlidePanel";
|
|
ActiveTheme.ThemeChanged.RegisterEvent(ReloadAll, ref unregisterEvents);
|
|
}
|
|
|
|
public void StartLogin()
|
|
{
|
|
if (PrinterConnectionAndCommunication.Instance.PrinterIsPrinting
|
|
|| PrinterConnectionAndCommunication.Instance.PrinterIsPaused)
|
|
{
|
|
// can't login while printing
|
|
UiThread.RunOnIdle(() =>
|
|
StyledMessageBox.ShowMessageBox(null, "Please wait until the print has finished and try again.".Localize(), "Can't login while printing".Localize())
|
|
);
|
|
}
|
|
else // do the regular login
|
|
{
|
|
LoginAction?.Invoke();
|
|
}
|
|
}
|
|
|
|
public void StartLogout()
|
|
{
|
|
if (PrinterConnectionAndCommunication.Instance.PrinterIsPrinting
|
|
|| PrinterConnectionAndCommunication.Instance.PrinterIsPaused)
|
|
{
|
|
// can't log out while printing
|
|
UiThread.RunOnIdle(() =>
|
|
StyledMessageBox.ShowMessageBox(null, "Please wait until the print has finished and try again.".Localize(), "Can't log out while printing".Localize())
|
|
);
|
|
}
|
|
else // do the regular log out
|
|
{
|
|
bool allowShowingLogoutWarning = true;
|
|
if (allowShowingLogoutWarning)
|
|
{
|
|
// Warn on logout that no access to user printers and cloud library put a 'Don't ask me again' check box
|
|
StyledMessageBox.ShowMessageBox((clickedLogout) =>
|
|
{
|
|
if (clickedLogout)
|
|
{
|
|
LogoutAction?.Invoke();
|
|
}
|
|
}, "Are you sure you want to logout? You will not have access to your printer profiles or cloud library.".Localize(), "Logout?".Localize(), StyledMessageBox.MessageType.YES_NO, "Logout".Localize(), "Cancel".Localize());
|
|
}
|
|
else // just run the logout event
|
|
{
|
|
LogoutAction?.Invoke();
|
|
}
|
|
}
|
|
}
|
|
|
|
public string GetSessionUsername()
|
|
{
|
|
if (GetSessionInfo != null)
|
|
{
|
|
return GetSessionInfo();
|
|
}
|
|
else
|
|
{
|
|
return null;
|
|
}
|
|
}
|
|
|
|
private static string MakeValidFileName(string name)
|
|
{
|
|
if (string.IsNullOrEmpty(name))
|
|
{
|
|
return name;
|
|
}
|
|
|
|
string invalidChars = System.Text.RegularExpressions.Regex.Escape(new string(System.IO.Path.GetInvalidFileNameChars()));
|
|
string invalidRegStr = string.Format(@"([{0}]*\.+$)|([{0}]+)", invalidChars);
|
|
|
|
return System.Text.RegularExpressions.Regex.Replace(name, invalidRegStr, "_");
|
|
}
|
|
|
|
public string GetSessionUsernameForFileSystem()
|
|
{
|
|
return MakeValidFileName(GetSessionUsername());
|
|
}
|
|
|
|
public void ReloadAll(object sender, EventArgs e)
|
|
{
|
|
UiThread.RunOnIdle(() =>
|
|
{
|
|
using (new PerformanceTimer("ReloadAll", "Total"))
|
|
{
|
|
// give the widget a chance to hear about the close before they are actually closed.
|
|
PopOutManager.SaveIfClosed = false;
|
|
WidescreenPanel.PreChangePanels.CallEvents(this, null);
|
|
MainView.CloseAllChildren();
|
|
using (new PerformanceTimer("ReloadAll", "AddElements"))
|
|
{
|
|
MainView.AddElements();
|
|
}
|
|
PopOutManager.SaveIfClosed = true;
|
|
DoneReloadingAll?.CallEvents(null, null);
|
|
}
|
|
});
|
|
}
|
|
|
|
public void OnApplicationClosed()
|
|
{
|
|
ApplicationClosed?.Invoke(null, null);
|
|
}
|
|
|
|
public static ApplicationController Instance
|
|
{
|
|
get
|
|
{
|
|
if (globalInstance == null)
|
|
{
|
|
//using (new PerformanceTimer("Startup", "AppController Instance"))
|
|
{
|
|
globalInstance = new ApplicationController();
|
|
if (UserSettings.Instance.DisplayMode == ApplicationDisplayType.Touchscreen)
|
|
{
|
|
globalInstance.MainView = new TouchscreenView();
|
|
}
|
|
else
|
|
{
|
|
globalInstance.MainView = new DesktopView();
|
|
}
|
|
|
|
ActiveSliceSettings.ActivePrinterChanged.RegisterEvent((s, e) => ApplicationController.Instance.ReloadAll(null, null), ref globalInstance.unregisterEvents);
|
|
}
|
|
}
|
|
return globalInstance;
|
|
}
|
|
}
|
|
|
|
public void ReloadAdvancedControlsPanel()
|
|
{
|
|
AdvancedControlsPanelReloading.CallEvents(this, null);
|
|
}
|
|
|
|
public LibraryDataView CurrentLibraryDataView = null;
|
|
public void SwitchToPurchasedLibrary()
|
|
{
|
|
// Switch to the purchased library
|
|
LibraryProviderSelector libraryProviderSelector = CurrentLibraryDataView.CurrentLibraryProvider.GetRootProvider() as LibraryProviderSelector;
|
|
if (libraryProviderSelector != null)
|
|
{
|
|
LibraryProvider purchaseProvider = libraryProviderSelector.GetPurchasedLibrary();
|
|
UiThread.RunOnIdle(() =>
|
|
{
|
|
CurrentLibraryDataView.CurrentLibraryProvider = purchaseProvider;
|
|
});
|
|
}
|
|
}
|
|
|
|
public void SwitchToSharedLibrary()
|
|
{
|
|
// Switch to the shared library
|
|
LibraryProviderSelector libraryProviderSelector = CurrentLibraryDataView.CurrentLibraryProvider.GetRootProvider() as LibraryProviderSelector;
|
|
if (libraryProviderSelector != null)
|
|
{
|
|
LibraryProvider sharedProvider = libraryProviderSelector.GetSharedLibrary();
|
|
UiThread.RunOnIdle(() =>
|
|
{
|
|
CurrentLibraryDataView.CurrentLibraryProvider = sharedProvider;
|
|
});
|
|
}
|
|
}
|
|
|
|
public void ChangeCloudSyncStatus(bool userAuthenticated)
|
|
{
|
|
CloudSyncStatusChanged.CallEvents(this, new CloudSyncEventArgs() { IsAuthenticated = userAuthenticated });
|
|
|
|
string activeUserName = ApplicationController.Instance.GetSessionUsernameForFileSystem();
|
|
UserSettings.Instance.set("ActiveUserName", activeUserName);
|
|
|
|
UserChanged();
|
|
}
|
|
|
|
// Called after every startup and at the completion of every authentication change
|
|
public void UserChanged()
|
|
{
|
|
ProfileManager.Reload();
|
|
|
|
var profileManager = ProfileManager.Instance;
|
|
|
|
// Ensure SQLite printers are imported
|
|
profileManager.EnsurePrintersImported();
|
|
|
|
var guestDB = ProfileManager.LoadGuestDB();
|
|
|
|
// If profiles.json was created, run the import wizard to pull in any SQLite printers
|
|
if (guestDB?.Profiles != null && guestDB.Profiles.Any() && !profileManager.IsGuestProfile && !profileManager.PrintersImported)
|
|
{
|
|
var wizardPage = new CopyGuestProfilesToUser(() =>
|
|
{
|
|
// On success, set state indicating import has been run and update ProfileManager state
|
|
profileManager.PrintersImported = true;
|
|
profileManager.Save();
|
|
});
|
|
|
|
// Show the import printers wizard
|
|
WizardWindow.Show("/CopyGuestProfiles", "Upload Printers", wizardPage);
|
|
}
|
|
}
|
|
|
|
public class CloudSyncEventArgs : EventArgs
|
|
{
|
|
public bool IsAuthenticated { get; set; }
|
|
}
|
|
}
|
|
} |