Skip to content

Commit 205d21e

Browse files
authored
Merge pull request LiuYunPlayer#96 from mhbalthasar/Linux-Title-&-Compile-Patch
Linux title & compile patch
2 parents 0bee215 + 0b2026e commit 205d21e

File tree

3 files changed

+14
-9
lines changed

3 files changed

+14
-9
lines changed

TuneLab/TuneLab.csproj

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
<ApplicationManifest>app.manifest</ApplicationManifest>
1010
<LangVersion>latest</LangVersion>
1111
<Version>1.5.6</Version>
12+
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
1213
</PropertyGroup>
1314

1415
<ItemGroup>

TuneLab/UI/MainWindow/MainWindow.axaml

+1-3
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,7 @@
2626
</Grid.ColumnDefinitions>
2727

2828
<StackPanel Grid.Column="0" x:Name="MenuBar" HorizontalAlignment="Left" VerticalAlignment="Center" Orientation="Horizontal"/>
29-
<StackPanel Grid.Column="1" IsHitTestVisible="False" VerticalAlignment="Center" Orientation="Horizontal">
30-
<TextBlock Text="{Binding $parent[Window].Title}" x:Name="TitleLabel" FontSize="12" VerticalAlignment="Center"/>
31-
</StackPanel>
29+
<StackPanel Grid.Column="1" x:Name="TitleBar" IsHitTestVisible="False" VerticalAlignment="Center" Orientation="Horizontal"/>
3230
<StackPanel Grid.Column="2" x:Name="WindowControl" HorizontalAlignment="Right" VerticalAlignment="Center" Orientation="Horizontal"/>
3331
</Grid>
3432

TuneLab/UI/MainWindow/MainWindow.axaml.cs

+12-6
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ public partial class MainWindow : Window
2424
{
2525
private PlatformID platform;
2626
private bool isCloseConfirm;
27+
private TextBlock TitleLabel;
2728
private Button maximizeButton;
2829
private ButtonContent maximizeIconContent = new() { Item = new IconItem() { Icon = Assets.WindowRestore }, ColorSet = new() { Color = Style.TEXT_LIGHT.Opacity(0.6) } };
2930

@@ -43,6 +44,9 @@ public MainWindow()
4344
Background = Style.BACK.ToBrush();
4445
Content.Margin = new(1, 0);
4546

47+
TitleLabel = new() { Text="", FontSize=12, VerticalAlignment = Avalonia.Layout.VerticalAlignment.Center, Foreground = Style.TEXT_LIGHT.ToBrush()};
48+
TitleLabel.Bind(TextBlock.TextProperty, new Avalonia.Data.Binding{Path="Title",Source=this});
49+
4650
var binimizeButton = new Button() { Width = 48, Height = 40 }
4751
.AddContent(new() { Item = new BorderItem() { CornerRadius = 0 }, ColorSet = new() { HoveredColor = Colors.White.Opacity(0.2), PressedColor = Colors.White.Opacity(0.2) } })
4852
.AddContent(new() { Item = new IconItem() { Icon = Assets.WindowMin }, ColorSet = new() { Color = Style.TEXT_LIGHT.Opacity(0.7) } });
@@ -58,14 +62,16 @@ public MainWindow()
5862
.AddContent(new() { Item = new IconItem() { Icon = Assets.WindowClose }, ColorSet = new() { Color = Style.TEXT_LIGHT.Opacity(0.7) } });
5963
closeButton.Clicked += () => Close();
6064

61-
WindowControl.Children.Add(binimizeButton);
62-
WindowControl.Children.Add(maximizeButton);
63-
WindowControl.Children.Add(closeButton);
64-
65+
bool UseSystemTitle = System.Runtime.InteropServices.RuntimeInformation.IsOSPlatform(System.Runtime.InteropServices.OSPlatform.Linux); //Is Only Linux have double title case X11?
66+
if(!UseSystemTitle){
67+
WindowControl.Children.Add(binimizeButton);
68+
WindowControl.Children.Add(maximizeButton);
69+
WindowControl.Children.Add(closeButton);
70+
TitleBar.Children.Add(TitleLabel);
71+
}
72+
6573
this.AttachWindowStateHandler();
6674

67-
TitleLabel.Foreground = Style.TEXT_LIGHT.ToBrush();
68-
6975
mEditor = new Editor();
7076
mEditor.Document.ProjectNameChanged.Subscribe(UpdateTitle);
7177
mEditor.Document.StatusChanged += UpdateTitle;

0 commit comments

Comments
 (0)