mirror of
https://github.com/ChrisTitusTech/winutil.git
synced 2025-04-04 18:22:09 +00:00
* initial visual implementation - remove idiotic border logic from Invoke-WPFUIElements - add "application" type & style - add "radiobutton" type & style - remove prefer choco checkbox (did not modify logic outside of xaml, so i currently get errors due to that) * add image support via choco db - add image support via choco db - backup image should be taken from unigetui db - backup backup image is some random package one rn * add compatibility for every app * performance improvements - move get logo to runspace (not working rn) - readd choco checkbox to mute errors * add border name * fix scrollviewer & reimplement logo logic into ui elements * noimage fix * add notes * cleanup & remove nav from search effects * add button action * rename buttons * add sort by options * move scrollviewer & app buttons into uielements logic * format logic for app action buttons * fix app action button logic & move get & clear to sidepanel * change category of new buttons * add virtualisation & layouting fixes - commented out prefer choco logic - add virtualisation - layouting improvements * fix radiobuttons * LETS GOOO (#12) * Add Selected Apps Label, Reshuffel the nesting of the checkbox and the label to be able to reference the name from the actual checkbox * Add visual selection and allow click on the whole app section * Fix Theme definition to work with theme change * Fix Highlight on if label or icon is clicked * change applications.json to powershell object list and refactor UI Creation logic * Optimization and Add Collapsable Categories * Add Button functionality for install, uninstall, info, install selected, uninstall selected, clear and implement search * Rest application.json to Main * Reset Compile to main * Pretty much revamp_apps but without changes to applications.json * Small fixes * Add Get-Installed Loading Indicator + small fixes * Re-Add Choco Preference * Remove Logic from Invoke-WPFUIElements that is Moved to Invoke-WPFUIApps * Remove Alphabetical List, Sort Apps inside Category Alphabetically * Small fixes to the Get-Installed function and formatting stuff * Style for Hidden Checkbox but visible Content * Hotfix for Category Expansion during search * Replace Category Label with ToggleButton, Fix Search Bugs * First Try at implementing a Compact Mode for the App page * Fix Whitespace when using Search * Keep the search status when switching between compact and full view * Fix weird buggy behaviour in regards to switching the Display Mode and using Show-SelectedOnly * Improve Togglebutton - add initial implementation of togglebutton style - add togglebuttons to appnavigation.json - refractor UI element creation for Togglebutton - commit preprocessing changes * Togglebutton fixes - move dot to the right in style - cleanup code - fix arrangement of content * Add logic to the new ToggleButtons in the sidebar of the install tab and remove old buttons * reorder buttons & fix Togglebutton toggling if action not possible - reorder getinstalled and clearselection - set togglebutton back if no app is selected * Slight modificatoin to togglebutton style & fix sidebar width * Add hover effect for the app tiles * ToggleButtonStyle animation - add hover animation to white dot - remove IsPressed trigger - improve some comments * disable show selected filter on clear selection * Add a Popup Dropdown for Selected Apps with the ability to deselect them * Split up the functions to seperate files like the rest of the repo * Fix Bug where Scrollviewer dosnt work * disable autofallback checkbox * run preprocessing * remove installation scope - remove all 3 radiobuttons from appnavigation.json * remove scrollviewer from WPFUIElements * toggle showselected on GetInstalled * remove unused autofallback --------- Co-authored-by: Martin Wiethan <47688561+Marterich@users.noreply.github.com> Co-authored-by: Chris Titus <contact@christitus.com>
335 lines
16 KiB
PowerShell
335 lines
16 KiB
PowerShell
function Invoke-WPFUIElements {
|
|
<#
|
|
.SYNOPSIS
|
|
Adds UI elements to a specified Grid in the WinUtil GUI based on a JSON configuration.
|
|
.PARAMETER configVariable
|
|
The variable/link containing the JSON configuration.
|
|
.PARAMETER targetGridName
|
|
The name of the grid to which the UI elements should be added.
|
|
.PARAMETER columncount
|
|
The number of columns to be used in the Grid. If not provided, a default value is used based on the panel.
|
|
.EXAMPLE
|
|
Invoke-WPFUIElements -configVariable $sync.configs.applications -targetGridName "install" -columncount 5
|
|
.NOTES
|
|
Future me/contributor: If possible, please wrap this into a runspace to make it load all panels at the same time.
|
|
#>
|
|
|
|
param(
|
|
[Parameter(Mandatory, Position = 0)]
|
|
[PSCustomObject]$configVariable,
|
|
|
|
[Parameter(Mandatory, Position = 1)]
|
|
[string]$targetGridName,
|
|
|
|
[Parameter(Mandatory, Position = 2)]
|
|
[int]$columncount
|
|
)
|
|
|
|
$window = $sync.form
|
|
|
|
$borderstyle = $window.FindResource("BorderStyle")
|
|
$HoverTextBlockStyle = $window.FindResource("HoverTextBlockStyle")
|
|
$ColorfulToggleSwitchStyle = $window.FindResource("ColorfulToggleSwitchStyle")
|
|
$ToggleButtonStyle = $window.FindResource("ToggleButtonStyle")
|
|
|
|
if (!$borderstyle -or !$HoverTextBlockStyle -or !$ColorfulToggleSwitchStyle) {
|
|
throw "Failed to retrieve Styles using 'FindResource' from main window element."
|
|
}
|
|
|
|
$targetGrid = $window.FindName($targetGridName)
|
|
|
|
if (!$targetGrid) {
|
|
throw "Failed to retrieve Target Grid by name, provided name: $targetGrid"
|
|
}
|
|
|
|
# Clear existing ColumnDefinitions and Children
|
|
$targetGrid.ColumnDefinitions.Clear() | Out-Null
|
|
$targetGrid.Children.Clear() | Out-Null
|
|
|
|
# Add ColumnDefinitions to the target Grid
|
|
for ($i = 0; $i -lt $columncount; $i++) {
|
|
$colDef = New-Object Windows.Controls.ColumnDefinition
|
|
$colDef.Width = New-Object Windows.GridLength(1, [Windows.GridUnitType]::Star)
|
|
$targetGrid.ColumnDefinitions.Add($colDef) | Out-Null
|
|
}
|
|
|
|
# Convert PSCustomObject to Hashtable
|
|
$configHashtable = @{}
|
|
$configVariable.PSObject.Properties.Name | ForEach-Object {
|
|
$configHashtable[$_] = $configVariable.$_
|
|
}
|
|
|
|
$radioButtonGroups = @{}
|
|
|
|
$organizedData = @{}
|
|
# Iterate through JSON data and organize by panel and category
|
|
foreach ($entry in $configHashtable.Keys) {
|
|
$entryInfo = $configHashtable[$entry]
|
|
|
|
# Create an object for the application
|
|
$entryObject = [PSCustomObject]@{
|
|
Name = $entry
|
|
Order = $entryInfo.order
|
|
Category = $entryInfo.Category
|
|
Content = $entryInfo.Content
|
|
Panel = if ($entryInfo.Panel) { $entryInfo.Panel } else { "0" }
|
|
Link = $entryInfo.link
|
|
Description = $entryInfo.description
|
|
Type = $entryInfo.type
|
|
ComboItems = $entryInfo.ComboItems
|
|
Checked = $entryInfo.Checked
|
|
ButtonWidth = $entryInfo.ButtonWidth
|
|
GroupName = $entryInfo.GroupName # Added for RadioButton groupings
|
|
}
|
|
|
|
if (-not $organizedData.ContainsKey($entryObject.Panel)) {
|
|
$organizedData[$entryObject.Panel] = @{}
|
|
}
|
|
|
|
if (-not $organizedData[$entryObject.Panel].ContainsKey($entryObject.Category)) {
|
|
$organizedData[$entryObject.Panel][$entryObject.Category] = @()
|
|
}
|
|
|
|
# Store application data in an array under the category
|
|
$organizedData[$entryObject.Panel][$entryObject.Category] += $entryObject
|
|
|
|
# Only apply the logic for distributing entries across columns if the targetGridName is "appspanel"
|
|
if ($targetGridName -eq "appspanel") {
|
|
$panelcount = 0
|
|
$entrycount = $configHashtable.Keys.Count + $organizedData["0"].Keys.Count
|
|
}
|
|
|
|
}
|
|
|
|
# Initialize panel count
|
|
$panelcount = 0
|
|
|
|
# Iterate through 'organizedData' by panel, category, and application
|
|
$count = 0
|
|
foreach ($panelKey in ($organizedData.Keys | Sort-Object)) {
|
|
# Create a Border for each column
|
|
$border = New-Object Windows.Controls.Border
|
|
$border.VerticalAlignment = "Stretch"
|
|
[System.Windows.Controls.Grid]::SetColumn($border, $panelcount)
|
|
$border.style = $borderstyle
|
|
$targetGrid.Children.Add($border) | Out-Null
|
|
|
|
# Use a DockPanel to contain the content
|
|
$dockPanelContainer = New-Object Windows.Controls.DockPanel
|
|
$border.Child = $dockPanelContainer
|
|
|
|
# Create an ItemsControl for application content
|
|
$itemsControl = New-Object Windows.Controls.ItemsControl
|
|
$itemsControl.HorizontalAlignment = 'Stretch'
|
|
$itemsControl.VerticalAlignment = 'Stretch'
|
|
|
|
# Set the ItemsPanel to a VirtualizingStackPanel
|
|
$itemsPanelTemplate = New-Object Windows.Controls.ItemsPanelTemplate
|
|
$factory = New-Object Windows.FrameworkElementFactory ([Windows.Controls.VirtualizingStackPanel])
|
|
$itemsPanelTemplate.VisualTree = $factory
|
|
$itemsControl.ItemsPanel = $itemsPanelTemplate
|
|
|
|
# Set virtualization properties
|
|
$itemsControl.SetValue([Windows.Controls.VirtualizingStackPanel]::IsVirtualizingProperty, $true)
|
|
$itemsControl.SetValue([Windows.Controls.VirtualizingStackPanel]::VirtualizationModeProperty, [Windows.Controls.VirtualizationMode]::Recycling)
|
|
|
|
# Add the ItemsControl directly to the DockPanel
|
|
[Windows.Controls.DockPanel]::SetDock($itemsControl, [Windows.Controls.Dock]::Bottom)
|
|
$dockPanelContainer.Children.Add($itemsControl) | Out-Null
|
|
$panelcount++
|
|
|
|
# Now proceed with adding category labels and entries to $itemsControl
|
|
foreach ($category in ($organizedData[$panelKey].Keys | Sort-Object)) {
|
|
$count++
|
|
|
|
$label = New-Object Windows.Controls.Label
|
|
$label.Content = $category -replace ".*__", ""
|
|
$label.SetResourceReference([Windows.Controls.Control]::FontSizeProperty, "FontSizeHeading")
|
|
$label.SetResourceReference([Windows.Controls.Control]::FontFamilyProperty, "HeaderFontFamily")
|
|
$itemsControl.Items.Add($label) | Out-Null
|
|
$sync[$category] = $label
|
|
|
|
# Sort entries by Order and then by Name
|
|
$entries = $organizedData[$panelKey][$category] | Sort-Object Order, Name
|
|
foreach ($entryInfo in $entries) {
|
|
$count++
|
|
# Create the UI elements based on the entry type
|
|
switch ($entryInfo.Type) {
|
|
"Toggle" {
|
|
$dockPanel = New-Object Windows.Controls.DockPanel
|
|
$checkBox = New-Object Windows.Controls.CheckBox
|
|
$checkBox.Name = $entryInfo.Name
|
|
$checkBox.HorizontalAlignment = "Right"
|
|
$dockPanel.Children.Add($checkBox) | Out-Null
|
|
$checkBox.Style = $ColorfulToggleSwitchStyle
|
|
|
|
$label = New-Object Windows.Controls.Label
|
|
$label.Content = $entryInfo.Content
|
|
$label.ToolTip = $entryInfo.Description
|
|
$label.HorizontalAlignment = "Left"
|
|
$label.SetResourceReference([Windows.Controls.Control]::FontSizeProperty, "FontSize")
|
|
$label.SetResourceReference([Windows.Controls.Control]::ForegroundProperty, "MainForegroundColor")
|
|
$dockPanel.Children.Add($label) | Out-Null
|
|
$itemsControl.Items.Add($dockPanel) | Out-Null
|
|
|
|
$sync[$entryInfo.Name] = $checkBox
|
|
|
|
$sync[$entryInfo.Name].IsChecked = (Get-WinUtilToggleStatus $entryInfo.Name)
|
|
|
|
$sync[$entryInfo.Name].Add_Checked({
|
|
[System.Object]$Sender = $args[0]
|
|
Invoke-WinUtilTweaks $sender.name
|
|
})
|
|
|
|
$sync[$entryInfo.Name].Add_Unchecked({
|
|
[System.Object]$Sender = $args[0]
|
|
Invoke-WinUtiltweaks $sender.name -undo $true
|
|
})
|
|
}
|
|
|
|
"ToggleButton" {
|
|
$toggleButton = New-Object Windows.Controls.Primitives.ToggleButton
|
|
$toggleButton.Name = $entryInfo.Name
|
|
$toggleButton.Content = $entryInfo.Content[1]
|
|
$toggleButton.ToolTip = $entryInfo.Description
|
|
$toggleButton.HorizontalAlignment = "Left"
|
|
$toggleButton.Style = $ToggleButtonStyle
|
|
|
|
$toggleButton.Tag = @{
|
|
contentOn = if ($entryInfo.Content.Count -ge 1) { $entryInfo.Content[0] } else { "" }
|
|
contentOff = if ($entryInfo.Content.Count -ge 2) { $entryInfo.Content[1] } else { $contentOn }
|
|
}
|
|
|
|
$itemsControl.Items.Add($toggleButton) | Out-Null
|
|
|
|
$sync[$entryInfo.Name] = $toggleButton
|
|
|
|
$sync[$entryInfo.Name].Add_Checked({
|
|
$this.Content = $this.Tag.contentOn
|
|
})
|
|
|
|
$sync[$entryInfo.Name].Add_Unchecked({
|
|
$this.Content = $this.Tag.contentOff
|
|
})
|
|
}
|
|
|
|
"Combobox" {
|
|
$horizontalStackPanel = New-Object Windows.Controls.StackPanel
|
|
$horizontalStackPanel.Orientation = "Horizontal"
|
|
$horizontalStackPanel.Margin = "0,5,0,0"
|
|
|
|
$label = New-Object Windows.Controls.Label
|
|
$label.Content = $entryInfo.Content
|
|
$label.HorizontalAlignment = "Left"
|
|
$label.VerticalAlignment = "Center"
|
|
$label.SetResourceReference([Windows.Controls.Control]::FontSizeProperty, "ButtonFontSize")
|
|
$horizontalStackPanel.Children.Add($label) | Out-Null
|
|
|
|
$comboBox = New-Object Windows.Controls.ComboBox
|
|
$comboBox.Name = $entryInfo.Name
|
|
$comboBox.SetResourceReference([Windows.Controls.Control]::HeightProperty, "ButtonHeight")
|
|
$comboBox.SetResourceReference([Windows.Controls.Control]::WidthProperty, "ButtonWidth")
|
|
$comboBox.HorizontalAlignment = "Left"
|
|
$comboBox.VerticalAlignment = "Center"
|
|
$comboBox.SetResourceReference([Windows.Controls.Control]::MarginProperty, "ButtonMargin")
|
|
|
|
foreach ($comboitem in ($entryInfo.ComboItems -split " ")) {
|
|
$comboBoxItem = New-Object Windows.Controls.ComboBoxItem
|
|
$comboBoxItem.Content = $comboitem
|
|
$comboBoxItem.SetResourceReference([Windows.Controls.Control]::FontSizeProperty, "ButtonFontSize")
|
|
$comboBox.Items.Add($comboBoxItem) | Out-Null
|
|
}
|
|
|
|
$horizontalStackPanel.Children.Add($comboBox) | Out-Null
|
|
$itemsControl.Items.Add($horizontalStackPanel) | Out-Null
|
|
|
|
$comboBox.SelectedIndex = 0
|
|
|
|
$sync[$entryInfo.Name] = $comboBox
|
|
}
|
|
|
|
"Button" {
|
|
$button = New-Object Windows.Controls.Button
|
|
$button.Name = $entryInfo.Name
|
|
$button.Content = $entryInfo.Content
|
|
$button.HorizontalAlignment = "Left"
|
|
$button.SetResourceReference([Windows.Controls.Control]::MarginProperty, "ButtonMargin")
|
|
$button.SetResourceReference([Windows.Controls.Control]::FontSizeProperty, "ButtonFontSize")
|
|
if ($entryInfo.ButtonWidth) {
|
|
$button.Width = $entryInfo.ButtonWidth
|
|
}
|
|
$itemsControl.Items.Add($button) | Out-Null
|
|
|
|
$sync[$entryInfo.Name] = $button
|
|
}
|
|
|
|
"RadioButton" {
|
|
# Check if a container for this GroupName already exists
|
|
if (-not $radioButtonGroups.ContainsKey($entryInfo.GroupName)) {
|
|
# Create a StackPanel for this group
|
|
$groupStackPanel = New-Object Windows.Controls.StackPanel
|
|
$groupStackPanel.Orientation = "Vertical"
|
|
|
|
# Add the group container to the ItemsControl
|
|
$itemsControl.Items.Add($groupStackPanel) | Out-Null
|
|
}
|
|
else {
|
|
# Retrieve the existing group container
|
|
$groupStackPanel = $radioButtonGroups[$entryInfo.GroupName]
|
|
}
|
|
|
|
# Create the RadioButton
|
|
$radioButton = New-Object Windows.Controls.RadioButton
|
|
$radioButton.Name = $entryInfo.Name
|
|
$radioButton.GroupName = $entryInfo.GroupName
|
|
$radioButton.Content = $entryInfo.Content
|
|
$radioButton.HorizontalAlignment = "Left"
|
|
$radioButton.SetResourceReference([Windows.Controls.Control]::MarginProperty, "CheckBoxMargin")
|
|
$radioButton.SetResourceReference([Windows.Controls.Control]::FontSizeProperty, "ButtonFontSize")
|
|
$radioButton.ToolTip = $entryInfo.Description
|
|
|
|
if ($entryInfo.Checked -eq $true) {
|
|
$radioButton.IsChecked = $true
|
|
}
|
|
|
|
# Add the RadioButton to the group container
|
|
$groupStackPanel.Children.Add($radioButton) | Out-Null
|
|
$sync[$entryInfo.Name] = $radioButton
|
|
}
|
|
|
|
default {
|
|
$horizontalStackPanel = New-Object Windows.Controls.StackPanel
|
|
$horizontalStackPanel.Orientation = "Horizontal"
|
|
|
|
$checkBox = New-Object Windows.Controls.CheckBox
|
|
$checkBox.Name = $entryInfo.Name
|
|
$checkBox.Content = $entryInfo.Content
|
|
$checkBox.SetResourceReference([Windows.Controls.Control]::FontSizeProperty, "FontSize")
|
|
$checkBox.ToolTip = $entryInfo.Description
|
|
$checkBox.SetResourceReference([Windows.Controls.Control]::MarginProperty, "CheckBoxMargin")
|
|
if ($entryInfo.Checked -eq $true) {
|
|
$checkBox.IsChecked = $entryInfo.Checked
|
|
}
|
|
$horizontalStackPanel.Children.Add($checkBox) | Out-Null
|
|
|
|
if ($entryInfo.Link) {
|
|
$textBlock = New-Object Windows.Controls.TextBlock
|
|
$textBlock.Name = $checkBox.Name + "Link"
|
|
$textBlock.Text = "(?)"
|
|
$textBlock.ToolTip = $entryInfo.Link
|
|
$textBlock.Style = $HoverTextBlockStyle
|
|
|
|
$horizontalStackPanel.Children.Add($textBlock) | Out-Null
|
|
|
|
$sync[$textBlock.Name] = $textBlock
|
|
}
|
|
|
|
$itemsControl.Items.Add($horizontalStackPanel) | Out-Null
|
|
$sync[$entryInfo.Name] = $checkBox
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|