Mountain/IPC/WindServiceHandlers/UI/mod.rs
1//! UI-layer IPC handlers - one `pub async fn Fn` per file.
2
3pub mod DecorationsClear;
4
5pub mod DecorationsGet;
6
7pub mod DecorationsGetMany;
8
9pub mod DecorationsSet;
10
11pub mod KeybindingAdd;
12
13pub mod KeybindingGetAll;
14
15pub mod KeybindingLookup;
16
17pub mod KeybindingRemove;
18
19pub mod LifecycleGetPhase;
20
21pub mod LifecycleRequestShutdown;
22
23pub mod LifecycleWhenPhase;
24
25pub mod NotificationEndProgress;
26
27pub mod NotificationShow;
28
29pub mod NotificationShowProgress;
30
31pub mod NotificationUpdateProgress;
32
33pub mod ProgressBegin;
34
35pub mod ProgressEnd;
36
37pub mod ProgressReport;
38
39pub mod QuickInputShowInputBox;
40
41pub mod QuickInputShowQuickPick;
42
43pub mod ThemesGetActive;
44
45pub mod ThemesList;
46
47pub mod ThemesSet;
48
49pub mod WorkingCopyGetAllDirty;
50
51pub mod WorkingCopyGetDirtyCount;
52
53pub mod WorkingCopyIsDirty;
54
55pub mod WorkingCopySetDirty;
56
57pub mod WorkspacesAddFolder;
58
59pub mod WorkspacesGetFolders;
60
61pub mod WorkspacesGetName;
62
63pub mod WorkspacesRemoveFolder;