Adding per client borders and hotkey to cycle through clients

This commit is contained in:
Aura Asuna
2022-05-10 01:31:50 +10:00
parent f5777de77c
commit 0ddaa99c9a
12 changed files with 317 additions and 17 deletions

View File

@@ -1,4 +1,6 @@
namespace EveOPreview.Services
using EveOPreview.View;
namespace EveOPreview.Services
{
public interface IThumbnailManager
{
@@ -7,5 +9,9 @@
void UpdateThumbnailsSize();
void UpdateThumbnailFrames();
IThumbnailView GetClientByTitle(string title);
IThumbnailView GetClientByPointer(System.IntPtr ptr);
IThumbnailView GetActiveClient();
}
}