16 lines
938 B
C#
16 lines
938 B
C#
using SharpIDE.Application.Features.Analysis;
|
|
using SharpIDE.Application.Features.Events;
|
|
using SharpIDE.Application.Features.SolutionDiscovery;
|
|
using SharpIDE.Godot.Features.BottomPanel;
|
|
|
|
namespace SharpIDE.Godot;
|
|
|
|
public class GodotGlobalEvents
|
|
{
|
|
public static GodotGlobalEvents Instance { get; set; } = null!;
|
|
public EventWrapper<BottomPanelType, Task> BottomPanelTabExternallySelected { get; } = new(_ => Task.CompletedTask);
|
|
public EventWrapper<BottomPanelType?, Task> BottomPanelTabSelected { get; } = new(_ => Task.CompletedTask);
|
|
public EventWrapper<bool, Task> BottomPanelVisibilityChangeRequested { get; } = new(_ => Task.CompletedTask);
|
|
public EventWrapper<SharpIdeFile, SharpIdeFileLinePosition?, Task> FileSelected { get; } = new((_, _) => Task.CompletedTask);
|
|
public EventWrapper<SharpIdeFile, SharpIdeFileLinePosition?, Task> FileExternallySelected { get; } = new((_, _) => Task.CompletedTask);
|
|
} |