mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
120 lines
6.7 KiB
XML
120 lines
6.7 KiB
XML
<!--
|
||
// /***************************************************************************
|
||
// Aaru Data Preservation Suite
|
||
// ‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐
|
||
//
|
||
// Filename : BlurayInfo.xaml
|
||
// Author(s) : Natalia Portillo <claunia@claunia.com>
|
||
//
|
||
// Component : GUI tabs.
|
||
//
|
||
// ‐‐[ Description ] ‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐
|
||
//
|
||
// Blu-ray tab.
|
||
//
|
||
// ‐‐[ License ] ‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐
|
||
//
|
||
// This program is free software: you can redistribute it and/or modify
|
||
// it under the terms of the GNU General public License as
|
||
// published by the Free Software Foundation, either version 3 of the
|
||
// License, or (at your option) any later version.
|
||
//
|
||
// This program is distributed in the hope that it will be useful,
|
||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
// GNU General public License for more details.
|
||
//
|
||
// You should have received a copy of the GNU General public License
|
||
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||
//
|
||
// ‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐
|
||
// Copyright © 2011-2025 Natalia Portillo
|
||
// ****************************************************************************/
|
||
-->
|
||
<UserControl xmlns="https://github.com/avaloniaui"
|
||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
||
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||
xmlns:tabs="clr-namespace:Aaru.Gui.ViewModels.Tabs"
|
||
xmlns:localization="clr-namespace:Aaru.Localization;assembly=Aaru.Localization"
|
||
mc:Ignorable="d"
|
||
d:DesignWidth="800"
|
||
d:DesignHeight="450"
|
||
x:Class="Aaru.Gui.Views.Tabs.BlurayInfo">
|
||
<Design.DataContext>
|
||
<tabs:BlurayInfoViewModel />
|
||
</Design.DataContext>
|
||
<StackPanel>
|
||
<StackPanel IsVisible="{Binding !!BlurayDiscInformationText}">
|
||
<TextBlock Text="{x:Static localization:UI.Disc_information}" />
|
||
<TextBox IsReadOnly="True"
|
||
Text="{Binding BlurayDiscInformationText}" />
|
||
</StackPanel>
|
||
<StackPanel IsVisible="{Binding !!BlurayBurstCuttingAreaText}">
|
||
<TextBlock Text="{x:Static localization:UI.Burst_Cutting_Area}" />
|
||
<TextBox IsReadOnly="True"
|
||
Text="{Binding BlurayBurstCuttingAreaText}" />
|
||
</StackPanel>
|
||
<StackPanel IsVisible="{Binding !!BlurayDdsText}">
|
||
<TextBlock Text="{x:Static localization:UI.Disc_Definition_Structure}" />
|
||
<TextBox IsReadOnly="True"
|
||
Text="{Binding BlurayDdsText}" />
|
||
</StackPanel>
|
||
<StackPanel IsVisible="{Binding !!BlurayCartridgeStatusText}">
|
||
<TextBlock Text="{x:Static localization:UI.Cartridge_Status}" />
|
||
<TextBox IsReadOnly="True"
|
||
Text="{Binding BlurayCartridgeStatusText}" />
|
||
</StackPanel>
|
||
<StackPanel IsVisible="{Binding !!BluraySpareAreaInformationText}">
|
||
<TextBlock Text="{x:Static localization:UI.Spare_Area_Information}" />
|
||
<TextBox IsReadOnly="True"
|
||
Text="{Binding BluraySpareAreaInformationText}" />
|
||
</StackPanel>
|
||
<StackPanel IsVisible="{Binding !!BlurayPowResourcesText}">
|
||
<TextBlock Text="{x:Static localization:UI.Pseudo_OverWrite_Resources}" />
|
||
<TextBox IsReadOnly="True"
|
||
Text="{Binding BlurayPowResourcesText}" />
|
||
</StackPanel>
|
||
<StackPanel IsVisible="{Binding !!BlurayTrackResourcesText}">
|
||
<TextBlock Text="{x:Static localization:UI.Track_Resources}" />
|
||
<TextBox IsReadOnly="True"
|
||
Text="{Binding BlurayTrackResourcesText}" />
|
||
</StackPanel>
|
||
<Button Command="{Binding SaveBlurayDiscInformationCommand}"
|
||
IsVisible="{Binding SaveBlurayDiscInformationVisible}">
|
||
<TextBlock Text="{x:Static localization:UI.ButtonLabel_Save_Disc_Information}" />
|
||
</Button>
|
||
<Button Command="{Binding SaveBlurayBurstCuttingAreaCommand}"
|
||
IsVisible="{Binding SaveBlurayBurstCuttingAreaVisible}">
|
||
<TextBlock Text="{x:Static localization:UI.ButtonLabel_Save_Burst_Cutting_Area}" />
|
||
</Button>
|
||
<Button Command="{Binding SaveBlurayDdsCommand}"
|
||
IsVisible="{Binding SaveBlurayDdsVisible}">
|
||
<TextBlock Text="{x:Static localization:UI.ButtonLabel_Save_Disc_Definition_Structure}" />
|
||
</Button>
|
||
<Button Command="{Binding SaveBlurayCartridgeStatusCommand}"
|
||
IsVisible="{Binding SaveBlurayCartridgeStatusVisible}">
|
||
<TextBlock Text="{x:Static localization:UI.ButtonLabel_Save_Cartridge_Status}" />
|
||
</Button>
|
||
<Button Command="{Binding SaveBluraySpareAreaInformationCommand}"
|
||
IsVisible="{Binding SaveBluraySpareAreaInformationVisible}">
|
||
<TextBlock Text="{x:Static localization:UI.ButtonLabel_Save_Spare_Area_Information}" />
|
||
</Button>
|
||
<Button Command="{Binding SaveBlurayPowResourcesCommand}"
|
||
IsVisible="{Binding SaveBlurayPowResourcesVisible}">
|
||
<TextBlock Text="{x:Static localization:UI.ButtonLabel_Save_Pseudo_OverWrite_Resources}" />
|
||
</Button>
|
||
<Button Command="{Binding SaveBlurayTrackResourcesCommand}"
|
||
IsVisible="{Binding SaveBlurayTrackResourcesVisible}">
|
||
<TextBlock Text="{x:Static localization:UI.ButtonLabel_Save_Track_Resources}" />
|
||
</Button>
|
||
<Button Command="{Binding SaveBlurayRawDflCommand}"
|
||
IsVisible="{Binding SaveBlurayRawDflVisible}">
|
||
<TextBlock Text="{x:Static localization:UI.ButtonLabel_Save_raw_DFL}" />
|
||
</Button>
|
||
<Button Command="{Binding SaveBlurayPacCommand}"
|
||
IsVisible="{Binding SaveBlurayPacVisible}">
|
||
<TextBlock Text="{x:Static localization:UI.ButtonLabel_Save_PAC}" />
|
||
</Button>
|
||
</StackPanel>
|
||
</UserControl> |