Skip to content

Commit 9722364

Browse files
committed
temporary new API, to be fixed
1 parent b0de9fd commit 9722364

File tree

5 files changed

+25
-17
lines changed

5 files changed

+25
-17
lines changed

osu.Framework/Platform/ISDLWindow.cs

+2-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
namespace osu.Framework.Platform
1212
{
13-
internal interface ISDLWindow : IWindow
13+
public interface ISDLWindow : IWindow
1414
{
1515
event Action<JoystickButton> JoystickButtonDown;
1616
event Action<JoystickButton> JoystickButtonUp;
@@ -40,6 +40,7 @@ internal interface ISDLWindow : IWindow
4040
void StopTextInput();
4141
void SetTextInputRect(RectangleF rectangle);
4242
void ResetIme();
43+
IDisposable CreateTrayIcon(TrayIcon icon);
4344
}
4445

4546
/// <summary>

osu.Framework/Platform/SDL2/SDL2Window.cs

+5
Original file line numberDiff line numberDiff line change
@@ -639,6 +639,11 @@ internal virtual void SetIconFromGroup(IconGroup iconGroup)
639639

640640
internal virtual void SetIconFromImage(Image<Rgba32> iconImage) => setSDLIcon(iconImage);
641641

642+
public IDisposable CreateTrayIcon(TrayIcon icon)
643+
{
644+
throw new PlatformNotSupportedException();
645+
}
646+
642647
#region Events
643648

644649
/// <summary>

osu.Framework/Platform/SDL3/SDL3TrayIcon.cs

+11-13
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,13 @@
11
using System;
2-
using System.IO;
32
using System.Runtime.CompilerServices;
43
using System.Runtime.InteropServices;
5-
using System.Runtime.Versioning;
64
using osu.Framework.Allocation;
7-
using osu.Framework.Bindables;
8-
using osu.Framework.Configuration;
9-
using osu.Framework.Extensions.EnumExtensions;
10-
using osu.Framework.Extensions.ImageExtensions;
11-
using osu.Framework.Logging;
125
using osu.Framework.Threading;
136
using SDL;
147
using SixLabors.ImageSharp;
158
using SixLabors.ImageSharp.PixelFormats;
16-
using Image = SixLabors.ImageSharp.Image;
17-
using Point = System.Drawing.Point;
9+
using Vulkan.Xlib;
1810
using static SDL.SDL3;
19-
using System.Transactions;
2011

2112
namespace osu.Framework.Platform.SDL3
2213
{
@@ -25,15 +16,22 @@ public unsafe class SDL3TrayIcon : IDisposable
2516
private SDL_Tray* innerTray;
2617
private SDL_TrayMenu* rootMenu;
2718

19+
private TrayIcon trayIcon;
20+
2821
internal SDL3TrayIcon(TrayIcon tray)
2922
{
30-
innerTray = SDL_CreateTray(null, tray.Label);
23+
trayIcon = tray;
24+
}
25+
26+
internal void Create()
27+
{
28+
innerTray = SDL_CreateTray(null, trayIcon.Label);
3129

32-
if (tray.Menu is null)
30+
if (trayIcon.Menu is null)
3331
return;
3432

3533
rootMenu = SDL_CreateTrayMenu(innerTray);
36-
insertMenu(rootMenu, tray.Menu);
34+
insertMenu(rootMenu, trayIcon.Menu);
3735
}
3836

3937
private void insertMenu(SDL_TrayMenu* menu, TrayMenuEntry[] entries)

osu.Framework/Platform/SDL3/SDL3Window.cs

+3-1
Original file line numberDiff line numberDiff line change
@@ -637,7 +637,9 @@ internal virtual void SetIconFromGroup(IconGroup iconGroup)
637637

638638
public IDisposable CreateTrayIcon(TrayIcon tray)
639639
{
640-
return new SDL3TrayIcon(tray);
640+
SDL3TrayIcon icon = new SDL3TrayIcon(tray);
641+
ScheduleCommand(icon.Create);
642+
return icon;
641643
}
642644

643645
#region Events

osu.Framework/Platform/Tray.cs

+4-2
Original file line numberDiff line numberDiff line change
@@ -5,21 +5,23 @@
55
// See the LICENCE file in the repository root for full licence text.
66

77
using System;
8+
using SixLabors.ImageSharp;
9+
using SixLabors.ImageSharp.PixelFormats;
810

911
namespace osu.Framework.Platform
1012
{
1113
public class TrayIcon
1214
{
1315
public required string Label { get; set; }
1416

15-
// Icon Icon { get; set; }
17+
public Image<Rgba32>? Icon { get; set; }
1618

1719
public TrayMenuEntry[]? Menu { get; set; }
1820
}
1921

2022
public abstract class TrayMenuEntry
2123
{
22-
public bool Enabled { get; set; }
24+
public bool Enabled { get; set; } = true;
2325
}
2426

2527
public class TrayButton : TrayMenuEntry

0 commit comments

Comments
 (0)