mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
209 lines
13 KiB
XML
209 lines
13 KiB
XML
<UserControl xmlns="https://github.com/avaloniaui"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:console="https://github.com/jinek/consolonia"
|
|
xmlns:windows="clr-namespace:Aaru.Tui.ViewModels.Windows"
|
|
xmlns:models="clr-namespace:Aaru.Tui.Models"
|
|
xmlns:controls="clr-namespace:Aaru.Tui.Controls"
|
|
xmlns:localization="clr-namespace:Aaru.Tui.Localization"
|
|
xmlns:mvvm="http://prismlibrary.com/"
|
|
x:Class="Aaru.Tui.Views.Windows.FileView"
|
|
x:DataType="windows:FileViewViewModel"
|
|
mvvm:ViewModelLocator.AutoWireViewModel="True">
|
|
<Design.DataContext>
|
|
<windows:FileViewViewModel />
|
|
</Design.DataContext>
|
|
<DockPanel>
|
|
<Menu DockPanel.Dock="Bottom"
|
|
Background="{DynamicResource CyberBackgroundPrimaryBrush}"
|
|
Foreground="{DynamicResource CyberNeonCyanBrush}"
|
|
HorizontalAlignment="Stretch">
|
|
<MenuItem Header="ESC " />
|
|
<MenuItem Header="{x:Static localization:Resources.Help_Header}"
|
|
Command="{Binding HelpCommand, Mode=OneWay}"
|
|
HotKey="F1" />
|
|
<MenuItem Header="{x:Static localization:Resources.SectorViewer_Header}"
|
|
Command="{Binding SectorViewCommand, Mode=OneWay}"
|
|
HotKey="F2" />
|
|
<MenuItem Header="F3 " />
|
|
<MenuItem Header="{x:Static localization:Resources.GoTo_Header}"
|
|
Command="{Binding GoToPathCommand, Mode=OneWay}"
|
|
HotKey="F4" />
|
|
<MenuItem Header="{x:Static localization:Resources.Exit_Header}"
|
|
Command="{Binding ExitCommand, Mode=OneWay}"
|
|
HotKey="F10" />
|
|
</Menu>
|
|
<Border BorderThickness="1"
|
|
Background="{DynamicResource CyberBackgroundPrimaryBrush}">
|
|
<Border.BorderBrush>
|
|
<console:LineBrush LineStyle="DoubleLine"
|
|
Brush="Cyan" />
|
|
</Border.BorderBrush>
|
|
<Grid RowDefinitions="*,Auto">
|
|
<Grid ColumnDefinitions="*,*"
|
|
Grid.Row="0">
|
|
<Border Grid.Column="0"
|
|
BorderThickness="1"
|
|
Background="{DynamicResource CyberBackgroundPrimaryBrush}">
|
|
<Border.BorderBrush>
|
|
<console:LineBrush LineStyle="DoubleLine"
|
|
Brush="Cyan" />
|
|
</Border.BorderBrush>
|
|
<ListBox ItemsSource="{Binding Files, Mode=OneWay}"
|
|
Background="{DynamicResource CyberBackgroundPrimaryBrush}"
|
|
SelectedItem="{Binding SelectedFile, Mode=TwoWay}"
|
|
KeyDown="ListBox_OnKeyDown"
|
|
BorderThickness="0">
|
|
<ListBox.ItemTemplate>
|
|
<DataTemplate DataType="models:FileModel">
|
|
<TextBox Text="{Binding Filename, Mode=OneWay}"
|
|
Foreground="{Binding ForegroundBrush, Mode=OneWay}"
|
|
Background="{DynamicResource CyberBackgroundPrimaryBrush}" />
|
|
</DataTemplate>
|
|
</ListBox.ItemTemplate>
|
|
</ListBox>
|
|
</Border>
|
|
<Border Grid.Column="1"
|
|
BorderThickness="1"
|
|
Background="{DynamicResource CyberBackgroundPrimaryBrush}">
|
|
<Border.BorderBrush>
|
|
<console:LineBrush LineStyle="DoubleLine"
|
|
Brush="Magenta" />
|
|
</Border.BorderBrush>
|
|
<Grid RowDefinitions="Auto,Auto,Auto,*"
|
|
VerticalAlignment="Top">
|
|
<Border Grid.Row="0"
|
|
BorderThickness="1"
|
|
Background="{DynamicResource CyberBackgroundPrimaryBrush}">
|
|
<Border.BorderBrush>
|
|
<console:LineBrush LineStyle="DoubleLine"
|
|
Brush="Magenta" />
|
|
</Border.BorderBrush>
|
|
<StackPanel VerticalAlignment="Top"
|
|
HorizontalAlignment="Center">
|
|
<TextBlock Text="Aaru Data Preservation Suite"
|
|
Foreground="{DynamicResource CyberNeonMagentaBrush}"
|
|
FontWeight="Bold" />
|
|
<TextBlock Text="{Binding InformationalVersion, Mode=OneWay}"
|
|
Foreground="{DynamicResource CyberNeonLimeBrush}"
|
|
FontWeight="Bold" />
|
|
<TextBlock Text="{Binding Copyright, Mode=OneWay}"
|
|
Foreground="{DynamicResource CyberNeonCyanBrush}"
|
|
FontWeight="Bold" />
|
|
</StackPanel>
|
|
</Border>
|
|
<Border Grid.Row="1"
|
|
BorderThickness="1"
|
|
Background="{DynamicResource CyberBackgroundPrimaryBrush}">
|
|
<Border.BorderBrush>
|
|
<console:LineBrush LineStyle="DoubleLine"
|
|
Brush="Magenta" />
|
|
</Border.BorderBrush>
|
|
<Grid ColumnDefinitions="Auto, *">
|
|
<TextBlock Grid.Column="0"
|
|
Text="Path: "
|
|
Foreground="{DynamicResource CyberNeonCyanBrush}" />
|
|
<TextBlock Grid.Column="1"
|
|
Text="{Binding CurrentPath, Mode=OneWay}"
|
|
Foreground="{DynamicResource CyberNeonLimeBrush}" />
|
|
</Grid>
|
|
</Border>
|
|
<Border Grid.Row="2"
|
|
BorderThickness="1"
|
|
IsVisible="{Binding IsFileInfoAvailable, Mode=OneWay}"
|
|
Background="{DynamicResource CyberBackgroundPrimaryBrush}">
|
|
<Border.BorderBrush>
|
|
<console:LineBrush LineStyle="DoubleLine"
|
|
Brush="Magenta" />
|
|
</Border.BorderBrush>
|
|
<Grid RowDefinitions="Auto, *, *, *, *">
|
|
<TextBlock Text="{x:Static localization:Resources.FileInformation_Text}"
|
|
Grid.Row="0"
|
|
HorizontalAlignment="Center"
|
|
Foreground="{DynamicResource CyberNeonCyanBrush}" />
|
|
<Grid ColumnDefinitions="Auto, *"
|
|
Grid.Row="1"
|
|
ColumnSpacing="1"
|
|
IsVisible="{Binding SelectedFileIsNotDirectory, Mode=OneWay}">
|
|
<TextBlock Grid.Column="0"
|
|
Text="{x:Static localization:Resources.FileLength_Text}" />
|
|
<TextBlock Grid.Column="1"
|
|
Text="{Binding SelectedFileLength, Mode=OneWay}"
|
|
Foreground="{DynamicResource CyberNeonCyanBrush}" />
|
|
</Grid>
|
|
<Grid ColumnDefinitions="Auto, *"
|
|
Grid.Row="2"
|
|
ColumnSpacing="1">
|
|
<TextBlock Grid.Column="0"
|
|
Text="{x:Static localization:Resources.FileCreationTime_Text}" />
|
|
<TextBlock Grid.Column="1"
|
|
Text="{Binding SelectedFileCreationTime, Mode=OneWay}"
|
|
Foreground="{DynamicResource CyberNeonYellowBrush}" />
|
|
</Grid>
|
|
<Grid ColumnDefinitions="Auto, *"
|
|
Grid.Row="3"
|
|
ColumnSpacing="1">
|
|
<TextBlock Grid.Column="0"
|
|
Text="{x:Static localization:Resources.FileLastWriteTime_Text}" />
|
|
<TextBlock Grid.Column="1"
|
|
Text="{Binding SelectedFileLastWriteTime, Mode=OneWay}"
|
|
Foreground="{DynamicResource CyberNeonYellowBrush}" />
|
|
</Grid>
|
|
<Grid Grid.Row="4">
|
|
<OnPlatform>
|
|
<OnPlatform.Windows>
|
|
<Grid ColumnDefinitions="Auto, *"
|
|
ColumnSpacing="1">
|
|
<TextBlock Grid.Column="0"
|
|
Text="{x:Static localization:Resources.FileAttributes_Text}" />
|
|
<TextBlock Grid.Column="1"
|
|
Text="{Binding SelectedFileAttributes, Mode=OneWay}"
|
|
Foreground="{DynamicResource CyberNeonLimeBrush}" />
|
|
</Grid>
|
|
</OnPlatform.Windows>
|
|
<OnPlatform.Default>
|
|
<Grid ColumnDefinitions="Auto, *"
|
|
ColumnSpacing="1">
|
|
<TextBlock Grid.Column="0"
|
|
Text="{x:Static localization:Resources.FileMode_Text}" />
|
|
<TextBlock Grid.Column="1"
|
|
Text="{Binding SelectedFileUnixMode, Mode=OneWay}"
|
|
Foreground="{DynamicResource CyberNeonLimeBrush}" />
|
|
</Grid>
|
|
</OnPlatform.Default>
|
|
</OnPlatform>
|
|
</Grid>
|
|
</Grid>
|
|
</Border>
|
|
<Border Grid.Row="3"
|
|
IsVisible="{Binding SelectedFileHasInformation, Mode=OneWay}"
|
|
BorderThickness="1"
|
|
Background="{DynamicResource CyberBackgroundPrimaryBrush}">
|
|
<Border.BorderBrush>
|
|
<console:LineBrush LineStyle="DoubleLine"
|
|
Brush="Magenta" />
|
|
</Border.BorderBrush>
|
|
<ScrollViewer>
|
|
<StackPanel VerticalAlignment="Top"
|
|
HorizontalAlignment="Stretch">
|
|
<TextBlock Text="{x:Static localization:Resources.FileInformation_Text}"
|
|
Foreground="{DynamicResource CyberNeonCyanBrush}"
|
|
FontWeight="Bold"
|
|
HorizontalAlignment="Center" />
|
|
<controls:SpectreTextBlock
|
|
Text="{Binding SelectedFileInformation, Mode=OneWay}"
|
|
HorizontalAlignment="Left"
|
|
TextWrapping="Wrap" />
|
|
</StackPanel>
|
|
</ScrollViewer>
|
|
</Border>
|
|
</Grid>
|
|
</Border>
|
|
</Grid>
|
|
<TextBlock Grid.Row="1"
|
|
Text="{Binding Status, Mode=OneWay}"
|
|
IsVisible="{Binding IsStatusVisible, Mode=OneWay}"
|
|
Foreground="{DynamicResource CyberNeonMagentaBrush}" />
|
|
</Grid>
|
|
</Border>
|
|
</DockPanel>
|
|
</UserControl> |