mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-23 16:37:58 +08:00
27c4b1be0e
* Add Settings.WinUI3 project * New namespace * Activation and Services * Assets and Behaviors * Converters and Helpers * Controls * View and ViewModels * Styles and Themes * OOBE * Strings * Small App moves * [check] Project files - publish profiles and launchSettings.json * [using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name workaround * [WIP] Workarounds to make it work * Fix suppressed warnings - naming * Add code analysis * Fix KBMPage and App dispatcher Fix MessageBox - replace with MessageDialog * Fix ImageResizerPage & mark ColorPickerButton with TODO * Add icon to windows Cleanup MainWindow.xaml.cs and OobeWindow.xaml.cs MainWindows and OobeWindow management * App Icon No framework and runtime subdirs * Remove PowerToys.Settings and Settings.UI from solution Update output paths * Installer work & publish.cmd * Fix dispatcher crashes * Fix crashes * Add all dlls to installer Cleanup installer Add OpenOOBE and OpenScoobe logic Fix minor issues Fix update scenario - REINSTALLMODE * Rename back namespaces, project name and project dir * [wip] move to winappsdk 1.1 * Fix propagating isElevated & installer runtimes dlls * Remove obsolete dir/file * PowerToys.Interop to netstandard2.0 * Move everything to .Net6 * [Settings] Always launch settings process non-elevated (#17791) * Move back to WinAppSdk 1.0.1 * Add Settings.WinUI3 project * New namespace * Activation and Services * Assets and Behaviors * Converters and Helpers * Controls * View and ViewModels * Styles and Themes * OOBE * Strings * Small App moves * [check] Project files - publish profiles and launchSettings.json * [using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name workaround * [WIP] Workarounds to make it work * Fix suppressed warnings - naming * Add code analysis * Fix KBMPage and App dispatcher Fix MessageBox - replace with MessageDialog * Fix ImageResizerPage & mark ColorPickerButton with TODO * Add icon to windows Cleanup MainWindow.xaml.cs and OobeWindow.xaml.cs MainWindows and OobeWindow management * App Icon No framework and runtime subdirs * Remove PowerToys.Settings and Settings.UI from solution Update output paths * Installer work & publish.cmd * Fix dispatcher crashes * Fix crashes * Add all dlls to installer Cleanup installer Add OpenOOBE and OpenScoobe logic Fix minor issues Fix update scenario - REINSTALLMODE * Rename back namespaces, project name and project dir * [wip] move to winappsdk 1.1 * Fix propagating isElevated & installer runtimes dlls * Remove obsolete dir/file * PowerToys.Interop to netstandard2.0 * Move everything to .Net6 * [Settings] Always launch settings process non-elevated (#17791) * Move back to WinAppSdk 1.0.1 * Revert merge conflict ARM64 removal * Fix KBM Browse overlay image button * Bring back settings publish profile * Update release.yml * Change target frameworkd windows version * [Setup] Add Windows Application Runtime SDK (#17809) * Update requirements doc * Update compiling docs * Fix signing * Fix Settings exe and dll versions * Add exception for dlls that have version 1.0.0.0 * Fix powershell condition Co-authored-by: Andrey Nekrasov <yuyoyuppe@users.noreply.github.com>
139 lines
5.2 KiB
C#
139 lines
5.2 KiB
C#
// Copyright (c) Microsoft Corporation
|
|
// The Microsoft Corporation licenses this file to you under the MIT license.
|
|
// See the LICENSE file in the project root for more information.
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
using System.Windows.Input;
|
|
using Microsoft.PowerToys.Settings.UI.Helpers;
|
|
using Microsoft.PowerToys.Settings.UI.Services;
|
|
using Microsoft.UI.Xaml.Controls;
|
|
using Microsoft.UI.Xaml.Input;
|
|
using Microsoft.UI.Xaml.Navigation;
|
|
using Windows.System;
|
|
|
|
namespace Microsoft.PowerToys.Settings.UI.ViewModels
|
|
{
|
|
public class ShellViewModel : Observable
|
|
{
|
|
private readonly KeyboardAccelerator altLeftKeyboardAccelerator = BuildKeyboardAccelerator(VirtualKey.Left, VirtualKeyModifiers.Menu);
|
|
|
|
private readonly KeyboardAccelerator backKeyboardAccelerator = BuildKeyboardAccelerator(VirtualKey.GoBack);
|
|
|
|
private bool isBackEnabled;
|
|
private IList<KeyboardAccelerator> keyboardAccelerators;
|
|
private NavigationView navigationView;
|
|
private NavigationViewItem selected;
|
|
private ICommand loadedCommand;
|
|
private ICommand itemInvokedCommand;
|
|
|
|
public bool IsBackEnabled
|
|
{
|
|
get { return isBackEnabled; }
|
|
set { Set(ref isBackEnabled, value); }
|
|
}
|
|
|
|
public bool IsVideoConferenceBuild
|
|
{
|
|
get
|
|
{
|
|
var mfHandle = NativeMethods.LoadLibrary("mf.dll");
|
|
bool mfAvailable = mfHandle != IntPtr.Zero;
|
|
if (mfAvailable)
|
|
{
|
|
NativeMethods.FreeLibrary(mfHandle);
|
|
}
|
|
|
|
return this != null && File.Exists("modules/VideoConference/PowerToys.VideoConferenceModule.dll") && mfAvailable;
|
|
}
|
|
}
|
|
|
|
public NavigationViewItem Selected
|
|
{
|
|
get { return selected; }
|
|
set { Set(ref selected, value); }
|
|
}
|
|
|
|
public ICommand LoadedCommand => loadedCommand ?? (loadedCommand = new RelayCommand(OnLoaded));
|
|
|
|
public ICommand ItemInvokedCommand => itemInvokedCommand ?? (itemInvokedCommand = new RelayCommand<NavigationViewItemInvokedEventArgs>(OnItemInvoked));
|
|
|
|
public ShellViewModel()
|
|
{
|
|
}
|
|
|
|
public void Initialize(Frame frame, NavigationView navigationView, IList<KeyboardAccelerator> keyboardAccelerators)
|
|
{
|
|
this.navigationView = navigationView;
|
|
this.keyboardAccelerators = keyboardAccelerators;
|
|
NavigationService.Frame = frame;
|
|
NavigationService.NavigationFailed += Frame_NavigationFailed;
|
|
NavigationService.Navigated += Frame_Navigated;
|
|
this.navigationView.BackRequested += OnBackRequested;
|
|
}
|
|
|
|
private static KeyboardAccelerator BuildKeyboardAccelerator(VirtualKey key, VirtualKeyModifiers? modifiers = null)
|
|
{
|
|
var keyboardAccelerator = new KeyboardAccelerator() { Key = key };
|
|
if (modifiers.HasValue)
|
|
{
|
|
keyboardAccelerator.Modifiers = modifiers.Value;
|
|
}
|
|
|
|
keyboardAccelerator.Invoked += OnKeyboardAcceleratorInvoked;
|
|
return keyboardAccelerator;
|
|
}
|
|
|
|
private static void OnKeyboardAcceleratorInvoked(KeyboardAccelerator sender, KeyboardAcceleratorInvokedEventArgs args)
|
|
{
|
|
var result = NavigationService.GoBack();
|
|
args.Handled = result;
|
|
}
|
|
|
|
private async void OnLoaded()
|
|
{
|
|
// Keyboard accelerators are added here to avoid showing 'Alt + left' tooltip on the page.
|
|
// More info on tracking issue https://github.com/Microsoft/microsoft-ui-xaml/issues/8
|
|
keyboardAccelerators.Add(altLeftKeyboardAccelerator);
|
|
keyboardAccelerators.Add(backKeyboardAccelerator);
|
|
await Task.CompletedTask.ConfigureAwait(false);
|
|
}
|
|
|
|
private void OnItemInvoked(NavigationViewItemInvokedEventArgs args)
|
|
{
|
|
var item = navigationView.MenuItems
|
|
.OfType<NavigationViewItem>()
|
|
.First(menuItem => (string)menuItem.Content == (string)args.InvokedItem);
|
|
var pageType = item.GetValue(NavHelper.NavigateToProperty) as Type;
|
|
NavigationService.Navigate(pageType);
|
|
}
|
|
|
|
private void OnBackRequested(NavigationView sender, NavigationViewBackRequestedEventArgs args)
|
|
{
|
|
NavigationService.GoBack();
|
|
}
|
|
|
|
private void Frame_NavigationFailed(object sender, NavigationFailedEventArgs e)
|
|
{
|
|
throw e.Exception;
|
|
}
|
|
|
|
private void Frame_Navigated(object sender, NavigationEventArgs e)
|
|
{
|
|
IsBackEnabled = NavigationService.CanGoBack;
|
|
Selected = navigationView.MenuItems
|
|
.OfType<NavigationViewItem>()
|
|
.FirstOrDefault(menuItem => IsMenuItemForPageType(menuItem, e.SourcePageType));
|
|
}
|
|
|
|
private static bool IsMenuItemForPageType(NavigationViewItem menuItem, Type sourcePageType)
|
|
{
|
|
var pageType = menuItem.GetValue(NavHelper.NavigateToProperty) as Type;
|
|
return pageType == sourcePageType;
|
|
}
|
|
}
|
|
}
|