forked from dalyIsaac/Whim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCommandPaletteCommands.cs
268 lines (250 loc) · 7.77 KB
/
CommandPaletteCommands.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
using System.Collections.Generic;
using System.Linq;
using Windows.Win32.UI.Input.KeyboardAndMouse;
namespace Whim.CommandPalette;
/// <summary>
/// The commands for the command palette plugin.
/// </summary>
public class CommandPaletteCommands : PluginCommands
{
private readonly IContext _context;
private readonly ICommandPalettePlugin _commandPalettePlugin;
/// <summary>
/// Creates a new instance of the command palette commands.
/// </summary>
public CommandPaletteCommands(IContext context, ICommandPalettePlugin commandPalettePlugin)
: base(commandPalettePlugin.Name)
{
_context = context;
_commandPalettePlugin = commandPalettePlugin;
_ = Add(
identifier: "toggle",
title: "Toggle command palette",
_commandPalettePlugin.Toggle,
keybind: new Keybind(IKeybind.WinShift, VIRTUAL_KEY.VK_K)
)
.Add(identifier: "activate_workspace", title: "Activate workspace", callback: ActivateWorkspaceCallback)
.Add(
identifier: "rename_workspace",
title: "Rename workspace",
callback: () =>
_commandPalettePlugin.Activate(
new FreeTextVariantConfig()
{
Callback = (text) => _context.WorkspaceManager.ActiveWorkspace.Name = text,
Hint = "Enter new workspace name",
InitialText = _context.WorkspaceManager.ActiveWorkspace.Name,
Prompt = "Rename workspace"
}
)
)
.Add(
identifier: "create_workspace",
title: "Create workspace",
callback: () =>
_commandPalettePlugin.Activate(
new FreeTextVariantConfig()
{
Callback = (name) => _context.WorkspaceManager.Add(name),
Hint = "Enter new workspace name",
Prompt = "Create workspace"
}
)
)
.Add(
identifier: "move_window_to_workspace",
title: "Move window to workspace",
callback: () =>
{
IWorkspace activeWorkspace = _context.WorkspaceManager.ActiveWorkspace;
List<ICommand> items = new();
foreach (IWorkspace workspace in _context.WorkspaceManager)
{
if (workspace != activeWorkspace)
{
items.Add(MoveWindowToWorkspaceCommandCreator(workspace));
}
}
_commandPalettePlugin.Activate(
new MenuVariantConfig() { Hint = "Select workspace", Commands = items }
);
}
)
.Add(
identifier: "move_multiple_windows_to_workspace",
title: "Move multiple windows to workspace",
callback: () =>
_commandPalettePlugin.Activate(
new SelectVariantConfig()
{
Hint = "Select windows",
Options = CreateMoveWindowsToWorkspaceOptions(),
Callback = MoveMultipleWindowsToWorkspaceCallback
}
)
)
.Add(
identifier: "remove_window",
title: "Select window to remove from Whim",
callback: () =>
_commandPalettePlugin.Activate(
new MenuVariantConfig()
{
Hint = "Select window",
Commands = _context
.WorkspaceManager
.ActiveWorkspace
.Windows
.Select(w => RemoveWindowCommandCreator(w)),
ConfirmButtonText = "Remove"
}
)
)
.Add(
identifier: "find_focus_window",
title: "Find and focus window",
callback: () =>
_commandPalettePlugin.Activate(
new MenuVariantConfig()
{
Hint = "Find window",
ConfirmButtonText = "Focus",
Commands = _context
.WorkspaceManager
.SelectMany(w => w.Windows)
.Select(w => FocusWindowCommandCreator(w))
}
)
);
}
private void ActivateWorkspaceCallback()
{
IWorkspace activeWorkspace = _context.WorkspaceManager.ActiveWorkspace;
List<ICommand> items = new();
foreach (IWorkspace workspace in _context.WorkspaceManager)
{
if (workspace != activeWorkspace)
{
items.Add(
new Command(
identifier: $"{PluginName}.activate_workspace.{workspace.Name}",
title: workspace.Name,
callback: () => _context.WorkspaceManager.Activate(workspace)
)
);
}
}
_commandPalettePlugin.Activate(
new MenuVariantConfig()
{
Hint = "Select workspace",
Commands = items,
ConfirmButtonText = "Activate"
}
);
}
/// <summary>
/// Creates the select options for moving multiple windows to a workspace.
/// </summary>
public SelectOption[] CreateMoveWindowsToWorkspaceOptions()
{
// All the windows in all the workspaces.
IEnumerable<IWindow> windows = _context
.WorkspaceManager
.Select(w => w.Windows)
.SelectMany(w => w)
.OrderBy(w => w.Title);
return windows
.Select(
w =>
new SelectOption()
{
Id = $"{PluginName}.move_multiple_windows_to_workspace.{w.Title}",
Title = w.Title,
IsEnabled = true,
IsSelected = false
}
)
.ToArray();
}
/// <summary>
/// Move multiple windows to workspace command creator.
/// </summary>
/// <param name="windows"></param>
/// <param name="workspace"></param>
/// <returns>The move multiple windows to workspace command.</returns>
internal ICommand MoveMultipleWindowsToWorkspaceCreator(IReadOnlyList<IWindow> windows, IWorkspace workspace) =>
new Command(
identifier: $"{PluginName}.move_multiple_windows_to_workspace.{workspace.Name}",
title: workspace.Name,
callback: () =>
{
foreach (IWindow window in windows)
{
_context.WorkspaceManager.MoveWindowToWorkspace(workspace, window);
}
}
);
/// <summary>
/// Callback to activate a menu variant to select the workspace to move the windows to.
/// </summary>
public void MoveMultipleWindowsToWorkspaceCallback(IEnumerable<SelectOption> options)
{
IEnumerable<string> selectedWindowNames = options.Where(o => o.IsSelected).Select(o => o.Title);
IReadOnlyList<IWorkspace> workspaces = _context.WorkspaceManager.ToArray();
IReadOnlyList<IWindow> windows = workspaces
.SelectMany(w => w.Windows)
.Where(w => selectedWindowNames.Contains(w.Title))
.ToArray();
IEnumerable<ICommand> commands = workspaces.Select(w => MoveMultipleWindowsToWorkspaceCreator(windows, w));
_commandPalettePlugin.Activate(new MenuVariantConfig() { Hint = "Select workspace", Commands = commands });
}
/// <summary>
/// Move window to workspace command creator.
/// </summary>
/// <param name="workspace">The workspace to move the window to.</param>
/// <returns>The move window to workspace command.</returns>
internal ICommand MoveWindowToWorkspaceCommandCreator(IWorkspace workspace) =>
new Command(
identifier: $"{PluginName}.move_window_to_workspace.{workspace.Name}",
title: $"Move window to workspace \"{workspace.Name}\"",
callback: () => _context.WorkspaceManager.MoveWindowToWorkspace(workspace)
);
/// <summary>
/// Untrack window command creator.
/// </summary>
/// <remarks>
/// Creates a command to remove a window from the active workspace. This is useful as Whim can
/// sometimes not realise that a window has been closed in niche cases.
/// For example, when waking/closing from sleep.
/// </remarks>
/// <param name="window">The window to untrack.</param>
/// <returns>The untrack window command.</returns>
internal ICommand RemoveWindowCommandCreator(IWindow window) =>
new Command(
identifier: $"{PluginName}.remove_window.{window.Title}",
title: window.Title,
callback: () => _context.WorkspaceManager.ActiveWorkspace.RemoveWindow(window)
);
/// <summary>
/// Focus window command creator.
/// </summary>
/// <param name="window"></param>
/// <returns></returns>
internal ICommand FocusWindowCommandCreator(IWindow window) =>
new Command(
identifier: $"{PluginName}.focus_window.{window.Title}",
title: window.Title,
callback: () =>
{
IWorkspace? workspace = _context.WorkspaceManager.GetWorkspaceForWindow(window);
if (workspace == null)
{
return;
}
// A bit of a dirty hack to focus the window. If the window is minimised, it will
// now be shown. It will then be focused.
workspace.AddWindow(window);
}
);
}