feat: expand cockpit integrations and support workflows

Add Phoenix remote desktop, action connector, documentation engine, and gamification support. Refactor support-case processing and search/action UI, and update installer assets and dependencies.
This commit is contained in:
Meik
2026-07-13 11:16:53 +02:00
parent bbedbf71c8
commit 0b52999b1d
303 changed files with 11235 additions and 3580 deletions

View File

@@ -74,13 +74,13 @@
<SolidColorBrush x:Key="HorizontalLineColor">#414141</SolidColorBrush>
<!--ScrollBar Colors-->
<Color x:Key="ControlLightColor">#303030</Color>
<Color x:Key="ControlMediumColor">#303030</Color>
<Color x:Key="ControlDarkColor">#303030</Color>
<Color x:Key="ControlLightColor">#5A5A5A</Color>
<Color x:Key="ControlMediumColor">#5A5A5A</Color>
<Color x:Key="ControlDarkColor">#5A5A5A</Color>
<SolidColorBrush x:Key="Scrollbar.Track.Color">#404040</SolidColorBrush>
<SolidColorBrush x:Key="TestColor"
Color="MediumVioletRed"/>
</ResourceDictionary>
</ResourceDictionary.MergedDictionaries>
</ResourceDictionary>
</ResourceDictionary>

View File

@@ -1,5 +1,10 @@
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:base="clr-namespace:C4IT.FASD.Base;assembly=F4SD-Cockpit-Client-Base"
xmlns:vc="clr-namespace:FasdDesktopUi.Basics.Converter">
<vc:LanguageCultureConverter x:Key="LanguageBindingConverter" />
<Style x:Key="Customizable.Editable.TextBox"
TargetType="TextBox">
<Setter Property="Padding"
@@ -30,48 +35,58 @@
Value="{DynamicResource BackgroundColor.DetailsPage.Widget.Title}" />
</Style>
<Style x:Key="Customizable.Editable.TextBox.EditOnly"
TargetType="TextBox"
<Style x:Key="Customizable.Editable.TextBox.EditOnly"
TargetType="TextBox"
BasedOn="{StaticResource Customizable.Editable.TextBox.Background}">
<Setter Property="BorderBrush"
<Setter Property="BorderBrush"
Value="{DynamicResource BackgroundColor.Menu.SubCategory.Hover}" />
<Setter Property="BorderThickness"
<Setter Property="BorderThickness"
Value="1" />
<Setter Property="Padding"
<Setter Property="Padding"
Value="10" />
<Setter Property="IsReadOnly"
<Setter Property="IsReadOnly"
Value="False" />
<Setter Property="AcceptsTab"
<Setter Property="AcceptsReturn"
Value="True" />
<Setter Property="AcceptsReturn"
<Setter Property="SpellCheck.IsEnabled"
Value="True" />
<Setter Property="Language"
Value="{Binding Source={x:Static base:cF4SDCockpitXmlConfig.Instance}, Path=HealthCardConfig.ProtocollLanguage, Converter={StaticResource ResourceKey=LanguageBindingConverter}, ConverterCulture=en-US}" />
<Style.Triggers>
<DataTrigger Binding="{Binding Source={x:Static base:cF4SDCockpitXmlConfig.Instance}, Path=HealthCardConfig.ProtocollLanguage}"
Value="{x:Null}">
<Setter Property="SpellCheck.IsEnabled"
Value="False" />
</DataTrigger>
</Style.Triggers>
</Style>
<Style x:Key="MandatoryFieldBorderStyle"
<Style x:Key="MandatoryFieldBorderStyle"
TargetType="Border">
<Setter Property="Margin"
<Setter Property="Margin"
Value="0 5 0 0" />
<Setter Property="BorderThickness"
<Setter Property="BorderThickness"
Value="1" />
<Setter Property="Padding"
<Setter Property="Padding"
Value="0" />
<Setter Property="CornerRadius"
<Setter Property="CornerRadius"
Value="7.5" />
<Setter Property="Background"
<Setter Property="Background"
Value="{DynamicResource BackgroundColor.DetailsPage.DataHistory.ValueColumn}" />
<Setter Property="BorderBrush"
<Setter Property="BorderBrush"
Value="{DynamicResource BackgroundColor.Menu.SubCategory.Hover}" />
<Style.Triggers>
<Trigger Property="IsMouseOver"
<Trigger Property="IsMouseOver"
Value="True">
<Setter Property="Background"
<Setter Property="Background"
Value="{DynamicResource BackgroundColor.Menu.SubCategory.Hover}" />
<Setter Property="BorderBrush"
<Setter Property="BorderBrush"
Value="{DynamicResource BackgroundColor.Menu.SubCategory}" />
</Trigger>
<Trigger Property="IsEnabled"
<Trigger Property="IsEnabled"
Value="False">
<Setter Property="Opacity"
<Setter Property="Opacity"
Value="0.5" />
</Trigger>
</Style.Triggers>

View File

@@ -75,10 +75,10 @@
<SolidColorBrush x:Key="HorizontalLineColor">#707070</SolidColorBrush>
<!--ScrollBar Colors-->
<Color x:Key="ControlLightColor">#DBDBDB</Color>
<Color x:Key="ControlMediumColor">#DBDBDB</Color>
<Color x:Key="ControlDarkColor">#DBDBDB</Color>
<SolidColorBrush x:Key="Scrollbar.Track.Color">#EBEBEB</SolidColorBrush>
<Color x:Key="ControlLightColor">#FFC5C5C5</Color>
<Color x:Key="ControlMediumColor">#FFAAAAAA</Color>
<Color x:Key="ControlDarkColor">#FF888888</Color>
<SolidColorBrush x:Key="Scrollbar.Track.Color">#FFDDDDDD</SolidColorBrush>
<SolidColorBrush x:Key="TestColor"
Color="DarkOrange" />
</ResourceDictionary>