2019-10-25 04:26:29 +00:00
|
|
|
<UserControl x:Class="Wabbajack.CompilerView"
|
|
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
|
|
xmlns:local="clr-namespace:Wabbajack"
|
|
|
|
mc:Ignorable="d"
|
|
|
|
d:DesignHeight="450" d:DesignWidth="800">
|
|
|
|
<Viewbox Stretch="Uniform">
|
|
|
|
<Grid Margin="4,0,4,0">
|
|
|
|
<Grid.RowDefinitions>
|
|
|
|
<RowDefinition Height="Auto" />
|
|
|
|
<RowDefinition Height="435" />
|
|
|
|
<RowDefinition Height="10" />
|
|
|
|
<RowDefinition Height="Auto" />
|
|
|
|
<RowDefinition Height="320" />
|
|
|
|
<RowDefinition Height="Auto" />
|
|
|
|
<RowDefinition Height="Auto" />
|
|
|
|
<RowDefinition Height="Auto" />
|
|
|
|
</Grid.RowDefinitions>
|
|
|
|
<Grid.ColumnDefinitions>
|
|
|
|
<ColumnDefinition Width="638" />
|
|
|
|
<ColumnDefinition Width="4" />
|
|
|
|
<ColumnDefinition Width="638" />
|
|
|
|
</Grid.ColumnDefinitions>
|
|
|
|
|
|
|
|
<StackPanel
|
|
|
|
Grid.Row="0"
|
|
|
|
Margin="0,8,0,8"
|
|
|
|
Orientation="Horizontal">
|
|
|
|
<TextBlock
|
|
|
|
FontSize="16"
|
|
|
|
FontWeight="Bold"
|
2019-10-31 23:44:17 +00:00
|
|
|
Text="Compiling" />
|
2019-10-25 04:26:29 +00:00
|
|
|
<TextBlock FontSize="16" Text=" : " />
|
2019-10-31 23:44:17 +00:00
|
|
|
<TextBlock FontSize="16" Text="{Binding MOProfile}" />
|
2019-10-25 04:26:29 +00:00
|
|
|
</StackPanel>
|
|
|
|
|
|
|
|
<Grid Grid.Row="1" Grid.Column="0"
|
|
|
|
IsEnabled="{Binding UIReady}"
|
|
|
|
Margin="0,8,0,8">
|
|
|
|
<Grid.RowDefinitions>
|
|
|
|
<RowDefinition Height="*" />
|
|
|
|
<RowDefinition Height="Auto" />
|
|
|
|
</Grid.RowDefinitions>
|
|
|
|
<Image Grid.Row="0"
|
|
|
|
Source="{Binding Image}"
|
|
|
|
Stretch="Fill" />
|
|
|
|
<Grid Grid.Row="1">
|
|
|
|
<Grid.ColumnDefinitions>
|
|
|
|
<ColumnDefinition Width="Auto" />
|
|
|
|
<ColumnDefinition Width="*" />
|
|
|
|
</Grid.ColumnDefinitions>
|
|
|
|
<Label
|
|
|
|
Grid.Column="0"
|
|
|
|
Content="Splash Screen Path:" />
|
2019-10-31 23:44:17 +00:00
|
|
|
<local:FilePicker Grid.Column="1"
|
|
|
|
PathType="File"
|
|
|
|
DoExistsCheck="False"
|
|
|
|
TargetPath="{Binding ImagePath}"
|
|
|
|
Filter="Banner image|*.png"
|
|
|
|
IsEnabled="{Binding UIReady}" HorizontalAlignment="Left" Width="534" />
|
2019-10-25 04:26:29 +00:00
|
|
|
</Grid>
|
|
|
|
</Grid>
|
|
|
|
|
|
|
|
<ScrollViewer Grid.Row="1" Grid.Column="2" HorizontalScrollBarVisibility="Disabled" VerticalScrollBarVisibility="Auto"
|
2019-10-31 23:44:17 +00:00
|
|
|
IsEnabled="{Binding UIReady}"
|
2019-10-25 04:26:29 +00:00
|
|
|
Background="Transparent">
|
|
|
|
<StackPanel Orientation="Vertical" Background="Transparent" >
|
|
|
|
<StackPanel.Resources>
|
|
|
|
<Thickness x:Key="TitleMargin" Left="5" Bottom="1" />
|
|
|
|
<Style TargetType="TextBox" x:Key="ValueStyle" BasedOn="{StaticResource MainTextBoxStyle}" >
|
|
|
|
<Setter Property="MaxLength" Value="50" />
|
|
|
|
<Setter Property="AcceptsTab" Value="False" />
|
|
|
|
<Setter Property="FontSize" Value="15" />
|
|
|
|
<Setter Property="Margin" Value="0,0,0,6" />
|
|
|
|
</Style>
|
|
|
|
</StackPanel.Resources>
|
|
|
|
<TextBlock Text="ModList Name" Margin="{StaticResource TitleMargin}" />
|
2019-10-31 23:44:17 +00:00
|
|
|
<TextBox Text="{Binding ModListName}" Style="{StaticResource ValueStyle}" />
|
2019-10-25 04:26:29 +00:00
|
|
|
<TextBlock Text="Author" Margin="{StaticResource TitleMargin}" />
|
|
|
|
<TextBox Text="{Binding AuthorName}" Style="{StaticResource ValueStyle}" />
|
|
|
|
<TextBlock Text="Description" Margin="{StaticResource TitleMargin}" />
|
|
|
|
<TextBox Text="{Binding Summary}" Style="{StaticResource ValueStyle}" Height="150" MaxLength="700" AcceptsReturn="True" TextWrapping="Wrap" AcceptsTab="False" />
|
|
|
|
<TextBlock Text="Website" Margin="{StaticResource TitleMargin}" />
|
|
|
|
<TextBox Text="{Binding NexusSiteURL}" Style="{StaticResource ValueStyle}" />
|
|
|
|
<TextBlock Text="Readme Path" Margin="{StaticResource TitleMargin}" ToolTip="Path to a readme file." />
|
2019-10-31 23:44:17 +00:00
|
|
|
<local:FilePicker TargetPath="{Binding ReadMeText}"
|
|
|
|
PathType="File"
|
|
|
|
DoExistsCheck="False"
|
|
|
|
ToolTip="Path to a readme file." />
|
2019-10-25 04:26:29 +00:00
|
|
|
</StackPanel>
|
|
|
|
</ScrollViewer>
|
|
|
|
|
|
|
|
<ProgressBar
|
|
|
|
Grid.Row="2"
|
|
|
|
Grid.Column="0"
|
|
|
|
Grid.ColumnSpan="3"
|
|
|
|
Margin="1,0,1,0"
|
|
|
|
Background="#444444"
|
|
|
|
Maximum="100"
|
|
|
|
Minimum="0"
|
|
|
|
Value="{Binding MWVM.QueueProgress}" />
|
|
|
|
|
|
|
|
<!-- Log -->
|
|
|
|
<TextBlock
|
|
|
|
Grid.Row="3"
|
|
|
|
Margin="0,16,0,8"
|
|
|
|
FontSize="14"
|
|
|
|
Text="Log:" />
|
|
|
|
<ListBox
|
|
|
|
Grid.Row="4"
|
|
|
|
Margin="0,0,2,0"
|
|
|
|
local:AutoScrollBehavior.ScrollOnNewItem="True"
|
|
|
|
ItemsSource="{Binding MWVM.Log}" />
|
|
|
|
<!-- End Log -->
|
|
|
|
|
|
|
|
<!-- Location -->
|
|
|
|
<Grid
|
|
|
|
Grid.Row="5"
|
|
|
|
Grid.RowSpan="2"
|
|
|
|
Grid.Column="0"
|
|
|
|
Margin="-4,10,0,10"
|
|
|
|
HorizontalAlignment="Stretch">
|
|
|
|
<Grid.ColumnDefinitions>
|
|
|
|
<ColumnDefinition Width="Auto" />
|
|
|
|
<ColumnDefinition Width="*" />
|
|
|
|
</Grid.ColumnDefinitions>
|
|
|
|
<Grid.RowDefinitions>
|
|
|
|
<RowDefinition />
|
|
|
|
<RowDefinition MinHeight="10" />
|
|
|
|
<RowDefinition />
|
|
|
|
</Grid.RowDefinitions>
|
|
|
|
<Label
|
|
|
|
Grid.Row="0"
|
|
|
|
Grid.Column="0"
|
|
|
|
Content="Installation Location:" />
|
2019-10-31 23:44:17 +00:00
|
|
|
<local:FilePicker
|
2019-10-25 04:26:29 +00:00
|
|
|
Grid.Row="0"
|
|
|
|
Grid.Column="1"
|
2019-10-31 23:44:17 +00:00
|
|
|
PathType="Folder"
|
|
|
|
DoExistsCheck="False"
|
|
|
|
TargetPath="{Binding Location}"
|
|
|
|
SetTargetPathCommand="{Binding ChangePathCommand}"
|
2019-10-25 04:26:29 +00:00
|
|
|
IsEnabled="{Binding UIReady}" />
|
|
|
|
<Label
|
|
|
|
Grid.Row="2"
|
|
|
|
Grid.Column="0"
|
|
|
|
Content="Download Location:" />
|
2019-10-31 23:44:17 +00:00
|
|
|
<local:FilePicker
|
2019-10-25 04:26:29 +00:00
|
|
|
Grid.Row="2"
|
|
|
|
Grid.Column="1"
|
2019-10-31 23:44:17 +00:00
|
|
|
PathType="Folder"
|
|
|
|
DoExistsCheck="False"
|
|
|
|
TargetPath="{Binding DownloadLocation}"
|
|
|
|
SetTargetPathCommand="{Binding ChangeDownloadPathCommand}"
|
2019-10-25 04:26:29 +00:00
|
|
|
IsEnabled="{Binding UIReady}" />
|
|
|
|
</Grid>
|
|
|
|
<!-- End Location -->
|
|
|
|
|
|
|
|
|
|
|
|
<!-- Work Queue Start -->
|
|
|
|
<TextBlock
|
|
|
|
Grid.Row="3"
|
|
|
|
Grid.Column="2"
|
|
|
|
Margin="0,16,0,8"
|
|
|
|
FontSize="14"
|
|
|
|
Text="Work Queue:" />
|
|
|
|
|
|
|
|
<ListBox
|
|
|
|
Grid.Row="4"
|
|
|
|
Grid.Column="2"
|
|
|
|
Width="Auto"
|
|
|
|
HorizontalAlignment="Stretch"
|
|
|
|
ItemsSource="{Binding MWVM.StatusList}">
|
|
|
|
<ListBox.ItemTemplate>
|
|
|
|
<DataTemplate>
|
|
|
|
<Grid HorizontalAlignment="Stretch">
|
|
|
|
<Grid.ColumnDefinitions>
|
|
|
|
<ColumnDefinition Width="Auto" />
|
|
|
|
<ColumnDefinition Width="Auto" />
|
|
|
|
<ColumnDefinition Width="Auto" />
|
|
|
|
<ColumnDefinition Width="Auto" />
|
|
|
|
<ColumnDefinition Width="Auto" />
|
|
|
|
</Grid.ColumnDefinitions>
|
|
|
|
<ProgressBar
|
|
|
|
Grid.Column="0"
|
|
|
|
Width="100"
|
|
|
|
Maximum="100"
|
|
|
|
Minimum="0"
|
|
|
|
Value="{Binding Progress, Mode=OneTime}">
|
|
|
|
<ProgressBar.Style>
|
|
|
|
<Style TargetType="ProgressBar">
|
|
|
|
<Setter Property="Visibility" Value="Visible" />
|
|
|
|
<Style.Triggers>
|
|
|
|
<DataTrigger Binding="{Binding Progress}" Value="0">
|
|
|
|
<Setter Property="Visibility" Value="Collapsed" />
|
|
|
|
</DataTrigger>
|
|
|
|
</Style.Triggers>
|
|
|
|
</Style>
|
|
|
|
</ProgressBar.Style>
|
|
|
|
</ProgressBar>
|
|
|
|
<TextBlock Grid.Column="1" Text=" CPU " />
|
|
|
|
<TextBlock Grid.Column="2" Text="{Binding ID}" />
|
|
|
|
<TextBlock Grid.Column="3" Text=" - " />
|
|
|
|
<TextBlock Grid.Column="4" Text="{Binding Msg}" />
|
|
|
|
</Grid>
|
|
|
|
</DataTemplate>
|
|
|
|
</ListBox.ItemTemplate>
|
|
|
|
</ListBox>
|
|
|
|
<!-- Work Queue End -->
|
|
|
|
|
|
|
|
<Grid
|
|
|
|
Grid.Row="5"
|
|
|
|
Grid.RowSpan="2"
|
|
|
|
Grid.Column="2"
|
|
|
|
Margin="0,10,0,10">
|
|
|
|
<Grid.RowDefinitions>
|
|
|
|
<RowDefinition Height="30" />
|
|
|
|
<RowDefinition Height="30" />
|
|
|
|
</Grid.RowDefinitions>
|
|
|
|
<Button
|
|
|
|
Grid.Row="0"
|
|
|
|
Margin="0,0,0,4"
|
|
|
|
Command="{Binding ShowReportCommand}"
|
|
|
|
Visibility="{Binding HTMLReport, Converter={StaticResource IsNotNullVisibilityConverter}}">
|
|
|
|
<TextBlock FontSize="13" FontWeight="Bold">View ModList Contents</TextBlock>
|
|
|
|
</Button>
|
|
|
|
<Button
|
|
|
|
Grid.Row="1"
|
|
|
|
Margin="0,4,0,0"
|
|
|
|
Command="{Binding BeginCommand}">
|
|
|
|
<TextBlock FontSize="13" FontWeight="Bold">Begin</TextBlock>
|
|
|
|
</Button>
|
|
|
|
</Grid>
|
|
|
|
</Grid>
|
|
|
|
</Viewbox>
|
|
|
|
</UserControl>
|