mirror of
https://github.com/sourcegit-scm/sourcegit.git
synced 2024-10-31 13:03:20 -07:00
170 lines
8.9 KiB
Text
170 lines
8.9 KiB
Text
|
<Window x:Class="SourceGit.UI.FileHistories"
|
||
|
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"
|
||
|
xmlns:local="clr-namespace:SourceGit.UI"
|
||
|
xmlns:git="clr-namespace:SourceGit.Git"
|
||
|
mc:Ignorable="d"
|
||
|
Height="600" Width="800">
|
||
|
|
||
|
<!-- Enable WindowChrome -->
|
||
|
<WindowChrome.WindowChrome>
|
||
|
<WindowChrome UseAeroCaptionButtons="False" CornerRadius="0" CaptionHeight="32"/>
|
||
|
</WindowChrome.WindowChrome>
|
||
|
|
||
|
<!-- Layout Window -->
|
||
|
<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="*"/>
|
||
|
</Grid.RowDefinitions>
|
||
|
|
||
|
<!-- Titlebar -->
|
||
|
<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 - FILE HISTORIES" 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>
|
||
|
|
||
|
<!-- Body -->
|
||
|
<Border Grid.Row="1" ClipToBounds="True">
|
||
|
<Grid>
|
||
|
<Grid.ColumnDefinitions>
|
||
|
<ColumnDefinition Width="300"/>
|
||
|
<ColumnDefinition Width="1"/>
|
||
|
<ColumnDefinition Width="*"/>
|
||
|
</Grid.ColumnDefinitions>
|
||
|
|
||
|
<DataGrid
|
||
|
x:Name="commitList"
|
||
|
Margin="2,0,0,0"
|
||
|
Grid.Column="0"
|
||
|
Background="{StaticResource Brush.BG2}"
|
||
|
BorderThickness="0"
|
||
|
SelectionMode="Single"
|
||
|
SelectionChanged="CommitSelectionChanged">
|
||
|
|
||
|
<DataGrid.Columns>
|
||
|
<DataGridTemplateColumn Width="*">
|
||
|
<DataGridTemplateColumn.CellTemplate>
|
||
|
<DataTemplate>
|
||
|
<Border BorderBrush="{StaticResource Brush.BG4}" BorderThickness="0,0,0,1" Padding="4">
|
||
|
<StackPanel Orientation="Vertical" Margin="2" MaxWidth="290">
|
||
|
<Grid TextBlock.FontSize="11" TextBlock.Foreground="{StaticResource Brush.FG2}">
|
||
|
<Grid.ColumnDefinitions>
|
||
|
<ColumnDefinition Width="72"/>
|
||
|
<ColumnDefinition Width="*"/>
|
||
|
<ColumnDefinition Width="120"/>
|
||
|
</Grid.ColumnDefinitions>
|
||
|
<Label Grid.Column="0" Padding="0">
|
||
|
<Hyperlink RequestNavigate="NavigateToCommit" NavigateUri="{Binding SHA}" Foreground="DarkOrange" ToolTip="GOTO COMMIT">
|
||
|
<Run Text="{Binding ShortSHA, Mode=OneWay}"/>
|
||
|
</Hyperlink>
|
||
|
</Label>
|
||
|
<TextBlock Grid.Column="1" Text="{Binding Author.Name}"/>
|
||
|
<TextBlock Grid.Column="2" Text="{Binding Author.Time}"/>
|
||
|
</Grid>
|
||
|
|
||
|
<TextBlock MaxWidth="280" Foreground="{StaticResource Brush.FG}" Text="{Binding Subject}" TextAlignment="Left" Padding="0" Margin="0,8,2,0"/>
|
||
|
</StackPanel>
|
||
|
</Border>
|
||
|
</DataTemplate>
|
||
|
</DataGridTemplateColumn.CellTemplate>
|
||
|
</DataGridTemplateColumn>
|
||
|
</DataGrid.Columns>
|
||
|
</DataGrid>
|
||
|
|
||
|
<!-- Loading tip -->
|
||
|
<Path x:Name="loading" Grid.Column="0" Data="{StaticResource Icon.Loading}" RenderTransformOrigin=".5,.5">
|
||
|
<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>
|
||
|
|
||
|
<Rectangle Grid.Column="1" Width="1" Fill="{StaticResource Brush.BG4}"/>
|
||
|
|
||
|
<local:DiffViewer x:Name="diff" Grid.Column="2" Margin="2,0"/>
|
||
|
</Grid>
|
||
|
</Border>
|
||
|
</Grid>
|
||
|
</Border>
|
||
|
</Window>
|
||
|
|