Adding per client borders and hotkey to cycle through clients
This commit is contained in:
@@ -1,10 +1,21 @@
|
||||
using System.Drawing;
|
||||
using System.Collections.Generic;
|
||||
using System.Drawing;
|
||||
using System.Windows.Forms;
|
||||
|
||||
namespace EveOPreview.Configuration
|
||||
{
|
||||
public interface IThumbnailConfiguration
|
||||
{
|
||||
List<string> CycleGroup1ForwardHotkeys { get; set; }
|
||||
List<string> CycleGroup1BackwardHotkeys { get; set; }
|
||||
Dictionary<string, string> CycleGroup1ClientsOrder { get; set; }
|
||||
|
||||
List<string> CycleGroup2ForwardHotkeys { get; set; }
|
||||
List<string> CycleGroup2BackwardHotkeys { get; set; }
|
||||
Dictionary<string, string> CycleGroup2ClientsOrder { get; set; }
|
||||
|
||||
Dictionary<string, Color> PerClientActiveClientHighlightColor { get; set; }
|
||||
|
||||
bool MinimizeToTray { get; set; }
|
||||
int ThumbnailRefreshPeriod { get; set; }
|
||||
|
||||
@@ -47,6 +58,7 @@ namespace EveOPreview.Configuration
|
||||
|
||||
Keys GetClientHotkey(string currentClient);
|
||||
void SetClientHotkey(string currentClient, Keys hotkey);
|
||||
Keys StringToKey(string hotkey);
|
||||
|
||||
bool IsPriorityClient(string currentClient);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user