2020-07-03 00:24:31 -07:00
|
|
|
<Window x:Class="SourceGit.UI.Blame"
|
|
|
|
x:Name="me"
|
|
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
|
|
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"
|
2020-08-06 01:01:10 -07:00
|
|
|
mc:Ignorable="d"
|
2020-07-30 23:43:24 -07:00
|
|
|
Title="Blame"
|
2020-07-03 00:24:31 -07:00
|
|
|
Height="600" Width="800">
|
|
|
|
|
|
|
|
<!-- Enable WindowChrome -->
|
|
|
|
<WindowChrome.WindowChrome>
|
|
|
|
<WindowChrome UseAeroCaptionButtons="False" CornerRadius="0" CaptionHeight="32"/>
|
|
|
|
</WindowChrome.WindowChrome>
|
|
|
|
|
|
|
|
<!-- Window Content -->
|
|
|
|
<Border Background="{StaticResource Brush.BG1}">
|
|
|
|
<!-- Fix Maximize BUG -->
|
|
|
|
<Border.Style>
|
|
|
|
<Style TargetType="{x:Type Border}">
|
|
|
|
<Style.Triggers>
|
|
|
|
<DataTrigger Binding="{Binding WindowState, ElementName=me}" Value="Maximized">
|
|
|
|
<Setter Property="Margin" Value="6"/>
|
|
|
|
</DataTrigger>
|
|
|
|
<DataTrigger Binding="{Binding WindowState, ElementName=me}" Value="Normal">
|
|
|
|
<Setter Property="Margin" Value="0"/>
|
|
|
|
</DataTrigger>
|
|
|
|
</Style.Triggers>
|
|
|
|
</Style>
|
|
|
|
</Border.Style>
|
|
|
|
|
|
|
|
<Grid>
|
|
|
|
<Grid.RowDefinitions>
|
|
|
|
<RowDefinition Height="32"/>
|
|
|
|
<RowDefinition Height="24"/>
|
|
|
|
<RowDefinition Height="*"/>
|
|
|
|
</Grid.RowDefinitions>
|
|
|
|
|
|
|
|
<!-- Title bar -->
|
|
|
|
<Grid Grid.Row="0" Background="{StaticResource Brush.BG4}">
|
|
|
|
<Grid.ColumnDefinitions>
|
|
|
|
<ColumnDefinition Width="Auto"/>
|
|
|
|
<ColumnDefinition Width="*"/>
|
|
|
|
<ColumnDefinition Width="Auto"/>
|
|
|
|
</Grid.ColumnDefinitions>
|
|
|
|
|
|
|
|
<!-- Logo & TITLE -->
|
|
|
|
<StackPanel Grid.Column="0" Orientation="Horizontal">
|
|
|
|
<Path
|
|
|
|
Width="20" Height="20" Margin="6,-1,2,0"
|
|
|
|
Style="{StaticResource Style.Icon}"
|
|
|
|
Data="{StaticResource Icon.Git}"
|
|
|
|
Fill="#FFF05133"
|
|
|
|
WindowChrome.IsHitTestVisibleInChrome="True"
|
|
|
|
MouseLeftButtonDown="LogoMouseButtonDown"/>
|
|
|
|
<Label Content="SOURCE GIT - BLAME" FontWeight="Light"/>
|
|
|
|
</StackPanel>
|
|
|
|
|
|
|
|
<!-- Options -->
|
|
|
|
<StackPanel Grid.Column="2" Orientation="Horizontal" WindowChrome.IsHitTestVisibleInChrome="True">
|
|
|
|
<Button Click="Minimize" Width="32" Style="{StaticResource Style.Button.HighlightHover}">
|
|
|
|
<Path Style="{StaticResource Style.WindowControlIcon}" Data="{StaticResource Icon.Minimize}"/>
|
|
|
|
</Button>
|
|
|
|
<Button Click="MaximizeOrRestore" Width="32" Style="{StaticResource Style.Button.HighlightHover}">
|
|
|
|
<Path>
|
|
|
|
<Path.Style>
|
|
|
|
<Style TargetType="{x:Type Path}" BasedOn="{StaticResource Style.WindowControlIcon}">
|
|
|
|
<Style.Triggers>
|
|
|
|
<DataTrigger Binding="{Binding WindowState, ElementName=me}" Value="Maximized">
|
|
|
|
<Setter Property="Data" Value="{StaticResource Icon.Restore}"/>
|
|
|
|
</DataTrigger>
|
|
|
|
<DataTrigger Binding="{Binding WindowState, ElementName=me}" Value="Normal">
|
|
|
|
<Setter Property="Data" Value="{StaticResource Icon.Maximize}"/>
|
|
|
|
</DataTrigger>
|
|
|
|
</Style.Triggers>
|
|
|
|
</Style>
|
|
|
|
</Path.Style>
|
|
|
|
</Path>
|
|
|
|
</Button>
|
|
|
|
<Button Click="Quit" Width="32">
|
|
|
|
<Button.Style>
|
|
|
|
<Style TargetType="{x:Type Button}" BasedOn="{StaticResource Style.Button.HighlightHover}">
|
|
|
|
<Style.Triggers>
|
|
|
|
<Trigger Property="IsMouseOver" Value="True">
|
|
|
|
<Setter Property="Background" Value="Red"/>
|
|
|
|
</Trigger>
|
|
|
|
</Style.Triggers>
|
|
|
|
</Style>
|
|
|
|
</Button.Style>
|
|
|
|
|
|
|
|
<Path Width="10" Style="{StaticResource Style.Icon}" Data="{StaticResource Icon.Close}"/>
|
|
|
|
</Button>
|
|
|
|
</StackPanel>
|
|
|
|
</Grid>
|
|
|
|
|
|
|
|
<!-- Blame file -->
|
|
|
|
<Border Grid.Row="1" Padding="2,0">
|
|
|
|
<Grid>
|
|
|
|
<Grid.ColumnDefinitions>
|
|
|
|
<ColumnDefinition Width="*"/>
|
|
|
|
<ColumnDefinition Width="Auto"/>
|
|
|
|
</Grid.ColumnDefinitions>
|
|
|
|
|
|
|
|
<Label Grid.Column="0" x:Name="blameFile" HorizontalAlignment="Left" FontSize="11" Foreground="{StaticResource Brush.FG2}" FontFamily="Consolas"/>
|
|
|
|
<Label Grid.Column="1" HorizontalAlignment="Right" Foreground="{StaticResource Brush.FG2}" FontSize="11" Content="Use right mouse button to view commit information."/>
|
|
|
|
</Grid>
|
|
|
|
</Border>
|
|
|
|
|
|
|
|
<!-- Content -->
|
2020-11-25 19:08:08 -08:00
|
|
|
<Border Grid.Row="2" BorderThickness="1" BorderBrush="{StaticResource Brush.Border2}" ClipToBounds="True">
|
|
|
|
<Grid x:Name="area" SizeChanged="OnSizeChanged">
|
2020-11-24 01:14:44 -08:00
|
|
|
<Grid.Resources>
|
|
|
|
<Style x:Key="Style.DataGridText.LineNumber" TargetType="{x:Type TextBlock}">
|
|
|
|
<Setter Property="FontFamily" Value="Consolas"/>
|
|
|
|
<Setter Property="Foreground" Value="{StaticResource Brush.FG}"/>
|
|
|
|
<Setter Property="HorizontalAlignment" Value="Right"/>
|
|
|
|
<Setter Property="VerticalAlignment" Value="Center"/>
|
|
|
|
<Setter Property="Padding" Value="8,0"/>
|
2020-11-25 19:08:08 -08:00
|
|
|
<Setter Property="FontSize" Value="12"/>
|
2020-11-24 01:14:44 -08:00
|
|
|
</Style>
|
|
|
|
</Grid.Resources>
|
|
|
|
|
|
|
|
<!-- Blame -->
|
|
|
|
<DataGrid
|
|
|
|
Grid.Column="0"
|
|
|
|
x:Name="blame"
|
|
|
|
GridLinesVisibility="Vertical"
|
|
|
|
VerticalGridLinesBrush="{StaticResource Brush.Border2}"
|
|
|
|
FrozenColumnCount="1"
|
2020-11-25 19:08:08 -08:00
|
|
|
RowHeight="16"
|
2020-11-24 01:14:44 -08:00
|
|
|
SelectionUnit="FullRow"
|
2020-11-25 19:08:08 -08:00
|
|
|
FontFamily="Consolas"
|
2020-11-24 01:14:44 -08:00
|
|
|
SelectionMode="Single">
|
|
|
|
|
|
|
|
<DataGrid.RowStyle>
|
|
|
|
<Style TargetType="{x:Type DataGridRow}" BasedOn="{StaticResource Style.DataGridRow}">
|
|
|
|
<EventSetter Event="RequestBringIntoView" Handler="OnBlameRequestBringIntoView"/>
|
|
|
|
<EventSetter Event="ContextMenuOpening" Handler="OnBlameContextMenuOpening"/>
|
|
|
|
</Style>
|
|
|
|
</DataGrid.RowStyle>
|
|
|
|
|
|
|
|
<DataGrid.Columns>
|
|
|
|
<DataGridTextColumn Width="Auto" IsReadOnly="True" Binding="{Binding LineNumber}" ElementStyle="{StaticResource Style.DataGridText.LineNumber}"/>
|
|
|
|
|
2020-11-25 19:08:08 -08:00
|
|
|
<DataGridTemplateColumn Width="SizeToCells" MinWidth="1" IsReadOnly="True">
|
2020-11-24 01:14:44 -08:00
|
|
|
<DataGridTemplateColumn.CellTemplate>
|
|
|
|
<DataTemplate>
|
|
|
|
<Grid>
|
|
|
|
<Border Background="{Binding BG}" BorderThickness="0"/>
|
|
|
|
<TextBlock Text="{Binding Line.Content}" Background="Transparent" Foreground="{StaticResource Brush.FG}" FontFamily="Consolas" FontSize="12" Margin="0" Padding="0"/>
|
|
|
|
</Grid>
|
|
|
|
</DataTemplate>
|
|
|
|
</DataGridTemplateColumn.CellTemplate>
|
|
|
|
</DataGridTemplateColumn>
|
|
|
|
</DataGrid.Columns>
|
|
|
|
</DataGrid>
|
2020-07-03 00:24:31 -07:00
|
|
|
|
|
|
|
<!-- Loading tip -->
|
2020-11-24 01:14:44 -08:00
|
|
|
<Path x:Name="loading" Data="{StaticResource Icon.Loading}" RenderTransformOrigin=".5,.5">
|
2020-07-03 00:24:31 -07:00
|
|
|
<Path.RenderTransform>
|
|
|
|
<RotateTransform Angle="0"/>
|
|
|
|
</Path.RenderTransform>
|
|
|
|
|
|
|
|
<Path.Style>
|
|
|
|
<Style BasedOn="{StaticResource Style.Icon}" TargetType="{x:Type Path}">
|
|
|
|
<Setter Property="Width" Value="48"/>
|
|
|
|
<Setter Property="Height" Value="48"/>
|
|
|
|
<Setter Property="HorizontalAlignment" Value="Center"/>
|
|
|
|
<Setter Property="VerticalAlignment" Value="Center"/>
|
|
|
|
<Setter Property="Fill" Value="{StaticResource Brush.FG2}"/>
|
|
|
|
</Style>
|
|
|
|
</Path.Style>
|
|
|
|
</Path>
|
|
|
|
|
|
|
|
<!-- Popup to show commit info -->
|
2020-11-24 01:14:44 -08:00
|
|
|
<Popup x:Name="popup" Placement="MousePoint" IsOpen="False" StaysOpen="False" Focusable="True">
|
2020-07-03 00:24:31 -07:00
|
|
|
<Border BorderBrush="{StaticResource Brush.Accent1}" BorderThickness="1" Background="{StaticResource Brush.BG1}">
|
|
|
|
<Grid Margin="4">
|
|
|
|
<Grid.RowDefinitions>
|
|
|
|
<RowDefinition Height="24"/>
|
|
|
|
<RowDefinition Height="24"/>
|
|
|
|
<RowDefinition Height="24"/>
|
|
|
|
</Grid.RowDefinitions>
|
|
|
|
|
|
|
|
<Grid.ColumnDefinitions>
|
|
|
|
<ColumnDefinition Width="Auto"/>
|
|
|
|
<ColumnDefinition Width="Auto"/>
|
|
|
|
</Grid.ColumnDefinitions>
|
|
|
|
|
|
|
|
<Label Grid.Row="0" Grid.Column="0" Content="COMMIT SHA" Foreground="{StaticResource Brush.FG2}"/>
|
|
|
|
<Label Grid.Row="0" Grid.Column="1" x:Name="commitID"/>
|
|
|
|
<Label Grid.Row="1" Grid.Column="0" Content="AUTHOR" Foreground="{StaticResource Brush.FG2}"/>
|
|
|
|
<Label Grid.Row="1" Grid.Column="1" x:Name="authorName"/>
|
|
|
|
<Label Grid.Row="2" Grid.Column="0" Content="MODIFY TIME" Foreground="{StaticResource Brush.FG2}"/>
|
|
|
|
<Label Grid.Row="2" Grid.Column="1" x:Name="authorTime"/>
|
|
|
|
</Grid>
|
|
|
|
</Border>
|
|
|
|
</Popup>
|
|
|
|
</Grid>
|
|
|
|
</Border>
|
|
|
|
</Grid>
|
|
|
|
</Border>
|
|
|
|
</Window>
|