mirror of
https://github.com/ChrisTitusTech/winutil.git
synced 2026-03-12 17:51:46 +08:00
80 lines
3.4 KiB
PowerShell
80 lines
3.4 KiB
PowerShell
function Invoke-WPFButton {
|
|
|
|
<#
|
|
|
|
.SYNOPSIS
|
|
Invokes the function associated with the clicked button
|
|
|
|
.PARAMETER Button
|
|
The name of the button that was clicked
|
|
|
|
#>
|
|
|
|
Param ([string]$Button)
|
|
|
|
# Use this to get the name of the button
|
|
#[System.Windows.MessageBox]::Show("$Button","Chris Titus Tech's Windows Utility","OK","Info")
|
|
if (-not $sync.ProcessRunning) {
|
|
Set-WinUtilProgressBar -label "" -percent 0
|
|
}
|
|
|
|
# Check if button is defined in feature config with function or InvokeScript
|
|
if ($sync.configs.feature.$Button) {
|
|
$buttonConfig = $sync.configs.feature.$Button
|
|
|
|
# If button has a function defined, call it
|
|
if ($buttonConfig.function) {
|
|
$functionName = $buttonConfig.function
|
|
if (Get-Command $functionName -ErrorAction SilentlyContinue) {
|
|
& $functionName
|
|
return
|
|
}
|
|
}
|
|
|
|
# If button has InvokeScript defined, execute the scripts
|
|
if ($buttonConfig.InvokeScript -and $buttonConfig.InvokeScript.Count -gt 0) {
|
|
foreach ($script in $buttonConfig.InvokeScript) {
|
|
if (-not [string]::IsNullOrWhiteSpace($script)) {
|
|
Invoke-Expression $script
|
|
}
|
|
}
|
|
return
|
|
}
|
|
}
|
|
|
|
# Fallback to hard-coded switch for buttons not in feature.json
|
|
Switch -Wildcard ($Button) {
|
|
"WPFTab?BT" {Invoke-WPFTab $Button}
|
|
"WPFInstall" {Invoke-WPFInstall}
|
|
"WPFUninstall" {Invoke-WPFUnInstall}
|
|
"WPFInstallUpgrade" {Invoke-WPFInstallUpgrade}
|
|
"WPFCollapseAllCategories" {Invoke-WPFToggleAllCategories -Action "Collapse"}
|
|
"WPFExpandAllCategories" {Invoke-WPFToggleAllCategories -Action "Expand"}
|
|
"WPFStandard" {Invoke-WPFPresets "Standard" -checkboxfilterpattern "WPFTweak*"}
|
|
"WPFMinimal" {Invoke-WPFPresets "Minimal" -checkboxfilterpattern "WPFTweak*"}
|
|
"WPFClearTweaksSelection" {Invoke-WPFPresets -imported $true -checkboxfilterpattern "WPFTweak*"}
|
|
"WPFClearInstallSelection" {Invoke-WPFPresets -imported $true -checkboxfilterpattern "WPFInstall*"}
|
|
"WPFtweaksbutton" {Invoke-WPFtweaksbutton}
|
|
"WPFOOSUbutton" {Invoke-WPFOOSU}
|
|
"WPFAddUltPerf" {Invoke-WPFUltimatePerformance -State "Enable"}
|
|
"WPFRemoveUltPerf" {Invoke-WPFUltimatePerformance -State "Disable"}
|
|
"WPFundoall" {Invoke-WPFundoall}
|
|
"WPFUpdatesdefault" {Invoke-WPFUpdatesdefault}
|
|
"WPFRunAdobeCCCleanerTool" {Invoke-WPFRunAdobeCCCleanerTool}
|
|
"WPFUpdatesdisable" {Invoke-WPFUpdatesdisable}
|
|
"WPFUpdatessecurity" {Invoke-WPFUpdatessecurity}
|
|
"WPFWinUtilShortcut" {Invoke-WPFShortcut -ShortcutToAdd "WinUtil" -RunAsAdmin $true}
|
|
"WPFGetInstalled" {Invoke-WPFGetInstalled -CheckBox "winget"}
|
|
"WPFGetInstalledTweaks" {Invoke-WPFGetInstalled -CheckBox "tweaks"}
|
|
"WPFCloseButton" {$sync.Form.Close(); Write-Host "Bye bye!"}
|
|
"WPFselectedAppsButton" {$sync.selectedAppsPopup.IsOpen = -not $sync.selectedAppsPopup.IsOpen}
|
|
"WPFToggleFOSSHighlight" {
|
|
if ($sync.WPFToggleFOSSHighlight.IsChecked) {
|
|
$sync.Form.Resources["FOSSColor"] = [Windows.Media.SolidColorBrush]::new([Windows.Media.Color]::FromRgb(76, 175, 80)) # #4CAF50
|
|
} else {
|
|
$sync.Form.Resources["FOSSColor"] = $sync.Form.Resources["MainForegroundColor"]
|
|
}
|
|
}
|
|
}
|
|
}
|