2020-08-22 21:19:34 +01:00
|
|
|
|
<!--
|
|
|
|
|
|
// /***************************************************************************
|
|
|
|
|
|
// RomRepoMgr - ROM repository manager
|
|
|
|
|
|
// ‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐
|
|
|
|
|
|
//
|
|
|
|
|
|
// Author(s) : Natalia Portillo <claunia@claunia.com>
|
|
|
|
|
|
//
|
|
|
|
|
|
// ‐‐[ 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/>.
|
|
|
|
|
|
//
|
|
|
|
|
|
// ‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐
|
2024-11-08 19:13:57 +00:00
|
|
|
|
// Copyright © 2020-2024 Natalia Portillo
|
2020-08-22 21:19:34 +01:00
|
|
|
|
// ****************************************************************************/
|
|
|
|
|
|
-->
|
2024-11-09 01:37:59 +00:00
|
|
|
|
<Window xmlns="https://github.com/avaloniaui"
|
|
|
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
2020-08-22 21:19:34 +01:00
|
|
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
|
|
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
2024-11-09 01:37:59 +00:00
|
|
|
|
xmlns:vm="clr-namespace:RomRepoMgr.ViewModels;assembly=RomRepoMgr"
|
2025-07-08 13:17:36 +01:00
|
|
|
|
xmlns:resources="clr-namespace:RomRepoMgr.Resources"
|
2024-11-09 01:37:59 +00:00
|
|
|
|
mc:Ignorable="d"
|
|
|
|
|
|
d:DesignWidth="800"
|
|
|
|
|
|
d:DesignHeight="450"
|
|
|
|
|
|
Width="480"
|
|
|
|
|
|
Height="320"
|
|
|
|
|
|
x:Class="RomRepoMgr.Views.SettingsDialog"
|
|
|
|
|
|
Icon="/Assets/avalonia-logo.ico"
|
|
|
|
|
|
CanResize="False"
|
2025-07-08 13:17:36 +01:00
|
|
|
|
Title="{x:Static resources:Localization.SettingsTitle}">
|
2020-08-22 21:19:34 +01:00
|
|
|
|
<Design.DataContext>
|
|
|
|
|
|
<vm:SettingsViewModel />
|
|
|
|
|
|
</Design.DataContext>
|
|
|
|
|
|
<Border Padding="15">
|
2025-07-08 17:55:44 +01:00
|
|
|
|
<Grid RowDefinitions="Auto,Auto,Auto,Auto,Auto,Auto">
|
|
|
|
|
|
<Grid Grid.Row="0"
|
|
|
|
|
|
ColumnDefinitions="*,250,Auto">
|
2024-11-09 01:37:59 +00:00
|
|
|
|
<TextBlock Grid.Column="0"
|
|
|
|
|
|
HorizontalAlignment="Right"
|
|
|
|
|
|
VerticalAlignment="Center"
|
2025-07-08 13:17:36 +01:00
|
|
|
|
Text="{x:Static resources:Localization.DatabaseFileLabel}"
|
2024-11-09 01:37:59 +00:00
|
|
|
|
FontWeight="Bold"
|
|
|
|
|
|
Padding="5" />
|
|
|
|
|
|
<TextBox Grid.Column="1"
|
|
|
|
|
|
HorizontalAlignment="Stretch"
|
|
|
|
|
|
VerticalAlignment="Center"
|
2025-07-08 18:14:37 +01:00
|
|
|
|
Text="{Binding DatabasePath, Mode=TwoWay}"
|
2024-11-09 01:37:59 +00:00
|
|
|
|
IsReadOnly="True"
|
|
|
|
|
|
Padding="5" />
|
|
|
|
|
|
<Button Grid.Column="2"
|
|
|
|
|
|
HorizontalAlignment="Right"
|
|
|
|
|
|
VerticalAlignment="Center"
|
2025-07-08 18:14:37 +01:00
|
|
|
|
Command="{Binding DatabaseCommand, Mode=OneWay}"
|
2024-11-09 01:37:59 +00:00
|
|
|
|
Padding="5">
|
2025-07-08 13:17:36 +01:00
|
|
|
|
<TextBlock Text="{x:Static resources:Localization.ChooseLabel}" />
|
2020-08-22 21:19:34 +01:00
|
|
|
|
</Button>
|
|
|
|
|
|
</Grid>
|
2025-07-08 17:55:44 +01:00
|
|
|
|
<Grid Grid.Row="1"
|
|
|
|
|
|
ColumnDefinitions="*,250,Auto">
|
2024-11-09 01:37:59 +00:00
|
|
|
|
<TextBlock Grid.Column="0"
|
|
|
|
|
|
HorizontalAlignment="Right"
|
|
|
|
|
|
VerticalAlignment="Center"
|
2025-07-08 13:17:36 +01:00
|
|
|
|
Text="{x:Static resources:Localization.RepositoryFolderLabel}"
|
2024-11-09 01:37:59 +00:00
|
|
|
|
FontWeight="Bold"
|
|
|
|
|
|
Padding="5" />
|
|
|
|
|
|
<TextBox Grid.Column="1"
|
|
|
|
|
|
HorizontalAlignment="Stretch"
|
|
|
|
|
|
VerticalAlignment="Center"
|
2025-07-08 18:14:37 +01:00
|
|
|
|
Text="{Binding RepositoryPath, Mode=TwoWay}"
|
2024-11-09 01:37:59 +00:00
|
|
|
|
IsReadOnly="True"
|
|
|
|
|
|
Padding="5" />
|
|
|
|
|
|
<Button Grid.Column="2"
|
|
|
|
|
|
HorizontalAlignment="Right"
|
|
|
|
|
|
VerticalAlignment="Center"
|
2025-07-08 18:14:37 +01:00
|
|
|
|
Command="{Binding RepositoryCommand, Mode=OneWay}"
|
2024-11-09 01:37:59 +00:00
|
|
|
|
Padding="5">
|
2025-07-08 13:17:36 +01:00
|
|
|
|
<TextBlock Text="{x:Static resources:Localization.ChooseLabel}" />
|
2020-08-22 21:19:34 +01:00
|
|
|
|
</Button>
|
|
|
|
|
|
</Grid>
|
2025-07-08 17:55:44 +01:00
|
|
|
|
<Grid Grid.Row="2"
|
|
|
|
|
|
ColumnDefinitions="*,250,Auto">
|
2024-11-09 01:37:59 +00:00
|
|
|
|
<TextBlock Grid.Column="0"
|
|
|
|
|
|
HorizontalAlignment="Right"
|
|
|
|
|
|
VerticalAlignment="Center"
|
2025-07-08 13:17:36 +01:00
|
|
|
|
Text="{x:Static resources:Localization.TemporaryFolderLabel}"
|
2024-11-09 01:37:59 +00:00
|
|
|
|
FontWeight="Bold"
|
|
|
|
|
|
Padding="5" />
|
|
|
|
|
|
<TextBox Grid.Column="1"
|
|
|
|
|
|
HorizontalAlignment="Stretch"
|
|
|
|
|
|
VerticalAlignment="Center"
|
2025-07-08 18:14:37 +01:00
|
|
|
|
Text="{Binding TemporaryPath, Mode=TwoWay}"
|
2024-11-09 01:37:59 +00:00
|
|
|
|
IsReadOnly="True"
|
|
|
|
|
|
Padding="5" />
|
|
|
|
|
|
<Button Grid.Column="2"
|
|
|
|
|
|
HorizontalAlignment="Right"
|
|
|
|
|
|
VerticalAlignment="Center"
|
2025-07-08 18:14:37 +01:00
|
|
|
|
Command="{Binding TemporaryCommand, Mode=OneWay}"
|
2024-11-09 01:37:59 +00:00
|
|
|
|
Padding="5">
|
2025-07-08 13:17:36 +01:00
|
|
|
|
<TextBlock Text="{x:Static resources:Localization.ChooseLabel}" />
|
2020-08-22 21:19:34 +01:00
|
|
|
|
</Button>
|
|
|
|
|
|
</Grid>
|
2025-07-08 17:55:44 +01:00
|
|
|
|
<Grid Grid.Row="3"
|
|
|
|
|
|
ColumnDefinitions="*,250,Auto">
|
2024-11-09 01:37:59 +00:00
|
|
|
|
<TextBlock Grid.Column="0"
|
|
|
|
|
|
HorizontalAlignment="Right"
|
|
|
|
|
|
VerticalAlignment="Center"
|
2025-07-08 13:17:36 +01:00
|
|
|
|
Text="{x:Static resources:Localization.UnArPathLabel}"
|
2024-11-09 01:37:59 +00:00
|
|
|
|
FontWeight="Bold"
|
|
|
|
|
|
Padding="5" />
|
|
|
|
|
|
<TextBox Grid.Column="1"
|
|
|
|
|
|
HorizontalAlignment="Stretch"
|
|
|
|
|
|
VerticalAlignment="Center"
|
2025-07-08 18:14:37 +01:00
|
|
|
|
Text="{Binding UnArPath, Mode=TwoWay}"
|
2024-11-09 01:37:59 +00:00
|
|
|
|
IsReadOnly="True"
|
|
|
|
|
|
Padding="5" />
|
|
|
|
|
|
<Button Grid.Column="2"
|
|
|
|
|
|
HorizontalAlignment="Right"
|
|
|
|
|
|
VerticalAlignment="Center"
|
2025-07-08 18:14:37 +01:00
|
|
|
|
Command="{Binding UnArCommand, Mode=OneWay}"
|
2024-11-09 01:37:59 +00:00
|
|
|
|
Padding="5">
|
2025-07-08 13:17:36 +01:00
|
|
|
|
<TextBlock Text="{x:Static resources:Localization.ChooseLabel}" />
|
2020-08-22 21:19:34 +01:00
|
|
|
|
</Button>
|
|
|
|
|
|
</Grid>
|
2024-11-09 01:37:59 +00:00
|
|
|
|
<TextBlock Grid.Row="4"
|
|
|
|
|
|
HorizontalAlignment="Left"
|
|
|
|
|
|
VerticalAlignment="Center"
|
2025-07-08 18:14:37 +01:00
|
|
|
|
Text="{Binding UnArVersion, Mode=OneWay}"
|
2020-08-22 21:19:34 +01:00
|
|
|
|
FontWeight="Bold" />
|
2024-11-09 01:37:59 +00:00
|
|
|
|
<StackPanel Grid.Row="5"
|
|
|
|
|
|
Orientation="Horizontal"
|
|
|
|
|
|
HorizontalAlignment="Right">
|
|
|
|
|
|
<Button HorizontalAlignment="Right"
|
|
|
|
|
|
VerticalAlignment="Center"
|
2025-07-08 18:14:37 +01:00
|
|
|
|
Command="{Binding SaveCommand, Mode=OneWay}">
|
2025-07-08 13:17:36 +01:00
|
|
|
|
<TextBlock Text="{x:Static resources:Localization.SaveLabel}" />
|
2020-08-22 21:19:34 +01:00
|
|
|
|
</Button>
|
2024-11-09 01:37:59 +00:00
|
|
|
|
<Button HorizontalAlignment="Right"
|
|
|
|
|
|
VerticalAlignment="Center"
|
2025-07-08 18:14:37 +01:00
|
|
|
|
Command="{Binding CloseCommand, Mode=OneWay}">
|
2025-07-08 13:17:36 +01:00
|
|
|
|
<TextBlock Text="{x:Static resources:Localization.CloseLabel}" />
|
2020-08-22 21:19:34 +01:00
|
|
|
|
</Button>
|
|
|
|
|
|
</StackPanel>
|
|
|
|
|
|
</Grid>
|
|
|
|
|
|
</Border>
|
|
|
|
|
|
</Window>
|