1
1
using System ;
2
- using System . IO ;
3
2
using System . Runtime . CompilerServices ;
4
3
using System . Runtime . InteropServices ;
5
- using System . Runtime . Versioning ;
6
4
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 ;
12
5
using osu . Framework . Threading ;
13
6
using SDL ;
14
7
using SixLabors . ImageSharp ;
15
8
using SixLabors . ImageSharp . PixelFormats ;
16
- using Image = SixLabors . ImageSharp . Image ;
17
- using Point = System . Drawing . Point ;
9
+ using Vulkan . Xlib ;
18
10
using static SDL . SDL3 ;
19
- using System . Transactions ;
20
11
21
12
namespace osu . Framework . Platform . SDL3
22
13
{
@@ -25,15 +16,22 @@ public unsafe class SDL3TrayIcon : IDisposable
25
16
private SDL_Tray * innerTray ;
26
17
private SDL_TrayMenu * rootMenu ;
27
18
19
+ private TrayIcon trayIcon ;
20
+
28
21
internal SDL3TrayIcon ( TrayIcon tray )
29
22
{
30
- innerTray = SDL_CreateTray ( null , tray . Label ) ;
23
+ trayIcon = tray ;
24
+ }
25
+
26
+ internal void Create ( )
27
+ {
28
+ innerTray = SDL_CreateTray ( null , trayIcon . Label ) ;
31
29
32
- if ( tray . Menu is null )
30
+ if ( trayIcon . Menu is null )
33
31
return ;
34
32
35
33
rootMenu = SDL_CreateTrayMenu ( innerTray ) ;
36
- insertMenu ( rootMenu , tray . Menu ) ;
34
+ insertMenu ( rootMenu , trayIcon . Menu ) ;
37
35
}
38
36
39
37
private void insertMenu ( SDL_TrayMenu * menu , TrayMenuEntry [ ] entries )
0 commit comments