271 lines
11 KiB
XML
271 lines
11 KiB
XML
<view:BeWoView
|
|
x:Class="BeWo.AI.View.AiTranskriptionView"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:controls="clr-namespace:BeWo.Controls;assembly=BeWo.Controls"
|
|
xmlns:core="clr-namespace:BS.Shared.Core;assembly=BS.Shared"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:dxe="http://schemas.devexpress.com/winfx/2008/xaml/editors"
|
|
xmlns:dxg="http://schemas.devexpress.com/winfx/2008/xaml/grid"
|
|
xmlns:dxlc="http://schemas.devexpress.com/winfx/2008/xaml/layoutcontrol"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
xmlns:t="clr-namespace:BeWo.MultiLanguage.Markup"
|
|
xmlns:validation="clr-namespace:BeWo.Validation"
|
|
xmlns:view="clr-namespace:BeWo.View"
|
|
Width="Auto"
|
|
Height="Auto"
|
|
HorizontalAlignment="Stretch"
|
|
VerticalAlignment="Stretch"
|
|
d:DesignHeight="400"
|
|
d:DesignWidth="500"
|
|
Focusable="True"
|
|
mc:Ignorable="d">
|
|
<Grid Margin="0" Background="{DynamicResource ObjectEditBackgroundBrush}">
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="Auto" />
|
|
<RowDefinition Height="*" />
|
|
<RowDefinition Height="Auto" />
|
|
</Grid.RowDefinitions>
|
|
<StackPanel
|
|
Grid.Row="0"
|
|
Height="Auto"
|
|
VerticalAlignment="Center"
|
|
Orientation="Vertical">
|
|
<Button
|
|
x:Name="ButtonStart"
|
|
Grid.Row="1"
|
|
Width="220"
|
|
Height="50"
|
|
Margin="0,10,0,0"
|
|
HorizontalAlignment="Center"
|
|
Click="ButtonStartStop_Click">
|
|
<Grid>
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="Auto" />
|
|
<ColumnDefinition Width="120" />
|
|
<ColumnDefinition Width="Auto" />
|
|
</Grid.ColumnDefinitions>
|
|
<Image
|
|
Width="32"
|
|
Height="32"
|
|
Margin="0,0,10,0"
|
|
Source="/BeWoPlaner;component/Ressources/Icons/KI/Icon_KI_Chat_Weiss+Orange.png" />
|
|
<TextBlock
|
|
x:Name="ButtonText"
|
|
Grid.Column="1"
|
|
VerticalAlignment="Center"
|
|
Text="{t:Translate Aufnahme initiieren}" />
|
|
<Viewbox
|
|
x:Name="VBPlay"
|
|
Grid.Column="2"
|
|
Width="40"
|
|
Height="40"
|
|
Visibility="Visible">
|
|
<Grid Width="100" Height="100">
|
|
<Ellipse
|
|
Width="80"
|
|
Height="80"
|
|
HorizontalAlignment="Center"
|
|
VerticalAlignment="Center"
|
|
Fill="Transparent"
|
|
Stroke="White"
|
|
StrokeThickness="6" />
|
|
|
|
<Path Data="M 40,30 L 40,70 L 70,50 Z" Fill="White" />
|
|
</Grid>
|
|
</Viewbox>
|
|
<Viewbox
|
|
x:Name="VBStop"
|
|
Grid.Column="2"
|
|
Width="40"
|
|
Height="40"
|
|
Visibility="Hidden">
|
|
<Grid Width="100" Height="100">
|
|
<Ellipse
|
|
Width="80"
|
|
Height="80"
|
|
HorizontalAlignment="Center"
|
|
VerticalAlignment="Center"
|
|
Fill="Transparent"
|
|
StrokeThickness="6">
|
|
<Ellipse.Stroke>
|
|
<LinearGradientBrush x:Name="RingGradient" StartPoint="0,0" EndPoint="1,0">
|
|
|
|
<LinearGradientBrush.RelativeTransform>
|
|
<RotateTransform x:Name="GradientRotate" CenterX="0.5" CenterY="0.5" />
|
|
</LinearGradientBrush.RelativeTransform>
|
|
|
|
<GradientStop Offset="0" Color="Red" />
|
|
<GradientStop Offset="1" Color="#00FF0000" />
|
|
</LinearGradientBrush>
|
|
</Ellipse.Stroke>
|
|
|
|
<Ellipse.Triggers>
|
|
<EventTrigger RoutedEvent="Loaded">
|
|
<BeginStoryboard>
|
|
<Storyboard RepeatBehavior="Forever">
|
|
<DoubleAnimation
|
|
Storyboard.TargetName="GradientRotate"
|
|
Storyboard.TargetProperty="Angle"
|
|
From="0"
|
|
To="360"
|
|
Duration="0:0:2" />
|
|
</Storyboard>
|
|
</BeginStoryboard>
|
|
</EventTrigger>
|
|
</Ellipse.Triggers>
|
|
</Ellipse>
|
|
|
|
<Rectangle
|
|
Width="33"
|
|
Height="33"
|
|
HorizontalAlignment="Center"
|
|
VerticalAlignment="Center"
|
|
Fill="Red" />
|
|
</Grid>
|
|
</Viewbox>
|
|
</Grid>
|
|
</Button>
|
|
<Label
|
|
x:Name="lblStatus"
|
|
Height="23"
|
|
HorizontalAlignment="Center" />
|
|
<StackPanel
|
|
x:Name="PanelAnimation"
|
|
HorizontalAlignment="Center"
|
|
VerticalAlignment="Center"
|
|
Orientation="Horizontal"
|
|
Visibility="Hidden">
|
|
|
|
<StackPanel.Resources>
|
|
<Storyboard x:Key="DotAnimation" RepeatBehavior="Forever">
|
|
<DoubleAnimation
|
|
AutoReverse="True"
|
|
Storyboard.TargetProperty="Opacity"
|
|
From="0.3"
|
|
To="1"
|
|
Duration="0:0:0.6" />
|
|
</Storyboard>
|
|
</StackPanel.Resources>
|
|
|
|
<!-- Punkt 1 -->
|
|
<Ellipse
|
|
Width="8"
|
|
Height="8"
|
|
Margin="3"
|
|
Fill="#007ACC">
|
|
<Ellipse.Triggers>
|
|
<EventTrigger RoutedEvent="Loaded">
|
|
<BeginStoryboard Storyboard="{StaticResource DotAnimation}" />
|
|
</EventTrigger>
|
|
</Ellipse.Triggers>
|
|
</Ellipse>
|
|
|
|
<!-- Punkt 2 -->
|
|
<Ellipse
|
|
Width="8"
|
|
Height="8"
|
|
Margin="3"
|
|
Fill="#007ACC"
|
|
Opacity="0.3">
|
|
<Ellipse.Triggers>
|
|
<EventTrigger RoutedEvent="Loaded">
|
|
<BeginStoryboard>
|
|
<Storyboard RepeatBehavior="Forever">
|
|
<DoubleAnimation
|
|
AutoReverse="True"
|
|
BeginTime="0:0:0.2"
|
|
Storyboard.TargetProperty="Opacity"
|
|
From="0.3"
|
|
To="1"
|
|
Duration="0:0:0.6" />
|
|
</Storyboard>
|
|
</BeginStoryboard>
|
|
</EventTrigger>
|
|
</Ellipse.Triggers>
|
|
</Ellipse>
|
|
|
|
<!-- Punkt 3 -->
|
|
<Ellipse
|
|
Width="8"
|
|
Height="8"
|
|
Margin="3"
|
|
Fill="#007ACC"
|
|
Opacity="0.3">
|
|
<Ellipse.Triggers>
|
|
<EventTrigger RoutedEvent="Loaded">
|
|
<BeginStoryboard>
|
|
<Storyboard RepeatBehavior="Forever">
|
|
<DoubleAnimation
|
|
AutoReverse="True"
|
|
BeginTime="0:0:0.4"
|
|
Storyboard.TargetProperty="Opacity"
|
|
From="0.3"
|
|
To="1"
|
|
Duration="0:0:0.6" />
|
|
</Storyboard>
|
|
</BeginStoryboard>
|
|
</EventTrigger>
|
|
</Ellipse.Triggers>
|
|
</Ellipse>
|
|
|
|
</StackPanel>
|
|
<StackPanel
|
|
x:Name="PanelAiButtons"
|
|
HorizontalAlignment="Right"
|
|
Orientation="Horizontal"
|
|
Visibility="Collapsed">
|
|
<StackPanel.Resources>
|
|
<ResourceDictionary>
|
|
<ResourceDictionary.MergedDictionaries>
|
|
<ResourceDictionary Source="/BeWoPlaner;component/Styles/ModernOrangeBlack.xaml" />
|
|
</ResourceDictionary.MergedDictionaries>
|
|
</ResourceDictionary>
|
|
</StackPanel.Resources>
|
|
|
|
<Button
|
|
x:Name="btn_AiPromptbaustein"
|
|
Padding="0"
|
|
Command="{Binding OpenAiPromptSelectionCommand}"
|
|
Content="{StaticResource AiDesignsIconKIFunktionWeissGruen}"
|
|
Style="{StaticResource PrimaryButton}" />
|
|
</StackPanel>
|
|
</StackPanel>
|
|
|
|
<TextBox
|
|
x:Name="TextBoxErgebnis"
|
|
Grid.Row="1"
|
|
Margin="3"
|
|
AcceptsReturn="True"
|
|
AcceptsTab="True"
|
|
HorizontalScrollBarVisibility="Disabled"
|
|
Style="{x:Null}"
|
|
TextWrapping="Wrap"
|
|
VerticalScrollBarVisibility="Auto" />
|
|
|
|
|
|
|
|
|
|
<StackPanel
|
|
Grid.Row="2"
|
|
Height="Auto"
|
|
Margin="5,10,10,10"
|
|
HorizontalAlignment="Right"
|
|
VerticalAlignment="Center"
|
|
Orientation="Horizontal">
|
|
<Button
|
|
x:Name="btnApply"
|
|
Height="25"
|
|
Margin="0,0,3,0"
|
|
Click="ButtonApply_Click"
|
|
Content="{t:Translate Text übernehmen}" />
|
|
<Button
|
|
x:Name="btnClose"
|
|
Height="25"
|
|
Margin="0,0,3,0"
|
|
Click="ButtonClose_Click"
|
|
Content=" Abbrechen " />
|
|
</StackPanel>
|
|
</Grid>
|
|
</view:BeWoView>
|