2024-06-26 05:56:29 -07:00
|
|
|
<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:vm="using:SourceGit.ViewModels"
|
|
|
|
xmlns:c="using:SourceGit.Converters"
|
|
|
|
mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450"
|
|
|
|
x:Class="SourceGit.Views.LauncherTabBar"
|
|
|
|
x:DataType="vm:Launcher">
|
|
|
|
<Grid ColumnDefinitions="Auto,*,Auto">
|
|
|
|
<RepeatButton x:Name="LeftScrollIndicator" Grid.Column="0" Classes="icon_button" Width="18" Height="30" Click="ScrollTabsLeft">
|
|
|
|
<Path Width="8" Height="14" Stretch="Fill" Data="{StaticResource Icons.TriangleLeft}"/>
|
|
|
|
</RepeatButton>
|
|
|
|
|
|
|
|
<ScrollViewer Grid.Column="1"
|
2024-06-29 02:04:39 -07:00
|
|
|
Margin="6,0"
|
2024-06-26 05:56:29 -07:00
|
|
|
x:Name="LauncherTabsScroller"
|
|
|
|
HorizontalAlignment="Left"
|
|
|
|
HorizontalScrollBarVisibility="Hidden"
|
|
|
|
VerticalScrollBarVisibility="Disabled"
|
2024-06-29 02:04:39 -07:00
|
|
|
PointerWheelChanged="ScrollTabs">
|
2024-06-26 05:56:29 -07:00
|
|
|
<StackPanel Orientation="Horizontal">
|
2024-06-29 02:04:39 -07:00
|
|
|
<ListBox x:Name="LauncherTabsList"
|
|
|
|
Classes="launcher_page_tabbar"
|
2024-06-26 05:56:29 -07:00
|
|
|
ItemsSource="{Binding Pages}"
|
|
|
|
SelectionMode="AlwaysSelected"
|
2024-06-29 02:04:39 -07:00
|
|
|
SelectedItem="{Binding ActivePage, Mode=TwoWay}"
|
|
|
|
SelectionChanged="OnTabsSelectionChanged"
|
|
|
|
LayoutUpdated="OnTabsLayoutUpdated">
|
2024-06-26 05:56:29 -07:00
|
|
|
<ListBox.ItemsPanel>
|
|
|
|
<ItemsPanelTemplate>
|
|
|
|
<StackPanel Orientation="Horizontal" Height="30"/>
|
|
|
|
</ItemsPanelTemplate>
|
|
|
|
</ListBox.ItemsPanel>
|
|
|
|
|
|
|
|
<ListBox.ItemTemplate>
|
|
|
|
<DataTemplate DataType="{x:Type vm:LauncherPage}">
|
2024-06-29 02:04:39 -07:00
|
|
|
<Border Height="30"
|
|
|
|
Background="Transparent"
|
2024-06-26 05:56:29 -07:00
|
|
|
PointerPressed="OnPointerPressedTab"
|
|
|
|
PointerMoved="OnPointerMovedOverTab"
|
|
|
|
PointerReleased="OnPointerReleasedTab"
|
|
|
|
Loaded="SetupDragAndDrop"
|
|
|
|
ContextRequested="OnTabContextRequested">
|
|
|
|
<Grid Width="{Binding Source={x:Static vm:Preference.Instance}, Path=UseFixedTabWidth, Converter={x:Static c:BoolConverters.ToPageTabWidth}}" Height="30" ColumnDefinitions="Auto,*,Auto" VerticalAlignment="Center">
|
|
|
|
<Path Grid.Column="0"
|
|
|
|
Width="12" Height="12" Margin="12,0"
|
|
|
|
Fill="{Binding Node.Bookmark, Converter={x:Static c:BookmarkConverters.ToBrush}}"
|
|
|
|
Data="{StaticResource Icons.Bookmark}"
|
|
|
|
IsVisible="{Binding Node.IsRepository}"
|
|
|
|
IsHitTestVisible="False"/>
|
|
|
|
<Path Grid.Column="0"
|
|
|
|
Width="12" Height="12" Margin="12,0"
|
|
|
|
Fill="{DynamicResource Brush.FG1}"
|
|
|
|
Data="{StaticResource Icons.Repositories}"
|
|
|
|
IsVisible="{Binding !Node.IsRepository}"
|
|
|
|
IsHitTestVisible="False"/>
|
|
|
|
<TextBlock Grid.Column="1"
|
|
|
|
Classes="monospace"
|
|
|
|
FontSize="12"
|
|
|
|
HorizontalAlignment="Stretch" VerticalAlignment="Center"
|
|
|
|
TextAlignment="Center"
|
|
|
|
Text="{Binding Node.Name}"
|
|
|
|
IsVisible="{Binding Node.IsRepository}"
|
|
|
|
IsHitTestVisible="False"/>
|
|
|
|
<TextBlock Grid.Column="1"
|
|
|
|
Classes="monospace"
|
|
|
|
FontSize="12"
|
|
|
|
HorizontalAlignment="Stretch" VerticalAlignment="Center"
|
|
|
|
TextAlignment="Center"
|
|
|
|
Text="{DynamicResource Text.PageTabBar.Welcome.Title}"
|
|
|
|
IsVisible="{Binding !Node.IsRepository}"
|
|
|
|
IsHitTestVisible="False"/>
|
|
|
|
<Button Grid.Column="2"
|
|
|
|
Classes="icon_button"
|
|
|
|
Width="16" Height="16" Margin="12,0"
|
|
|
|
Click="OnCloseTab">
|
|
|
|
<ToolTip.Tip>
|
|
|
|
<StackPanel Orientation="Horizontal" VerticalAlignment="Center">
|
|
|
|
<TextBlock Text="{DynamicResource Text.PageTabBar.Tab.Close}" VerticalAlignment="Center"/>
|
|
|
|
<TextBlock Margin="16,0,0,0" Text="{OnPlatform Ctrl+W, macOS=⌘+W}" Opacity=".6" FontSize="11" VerticalAlignment="Center"/>
|
|
|
|
</StackPanel>
|
|
|
|
</ToolTip.Tip>
|
|
|
|
<Path Width="8" Height="8" Data="{StaticResource Icons.Window.Close}"/>
|
|
|
|
</Button>
|
|
|
|
</Grid>
|
|
|
|
</Border>
|
|
|
|
</DataTemplate>
|
|
|
|
</ListBox.ItemTemplate>
|
|
|
|
</ListBox>
|
|
|
|
|
|
|
|
<Button Classes="icon_button"
|
|
|
|
Width="16" Height="16"
|
|
|
|
Margin="8,0"
|
|
|
|
Command="{Binding AddNewTab}">
|
|
|
|
<ToolTip.Tip>
|
|
|
|
<StackPanel Orientation="Horizontal" VerticalAlignment="Center">
|
|
|
|
<TextBlock Text="{DynamicResource Text.PageTabBar.New}" VerticalAlignment="Center"/>
|
|
|
|
<TextBlock Margin="16,0,0,0" Text="{OnPlatform Ctrl+T, macOS=⌘+T}" Opacity=".6" FontSize="11" VerticalAlignment="Center"/>
|
|
|
|
</StackPanel>
|
|
|
|
</ToolTip.Tip>
|
|
|
|
|
|
|
|
<Path Width="12" Height="12" Data="{StaticResource Icons.Plus}"/>
|
|
|
|
</Button>
|
|
|
|
</StackPanel>
|
|
|
|
</ScrollViewer>
|
|
|
|
|
|
|
|
<RepeatButton x:Name="RightScrollIndicator" Grid.Column="2" Classes="icon_button" Width="18" Height="30" Click="ScrollTabsRight">
|
|
|
|
<Path Width="8" Height="14" Stretch="Fill" Data="{StaticResource Icons.TriangleRight}"/>
|
|
|
|
</RepeatButton>
|
|
|
|
</Grid>
|
|
|
|
</UserControl>
|