Skip to main content

Mountain/RPC/CocoonService/
Window.rs

1#![allow(non_snake_case)]
2
3//! Window-domain handlers for `CocoonService`. Sixteen entry points cover
4//! show/hide messages, status-bar items, webview panels, and the prompt
5//! family (quick-pick / input-box / progress).
6
7pub mod CreateStatusBarItem;
8
9pub mod CreateWebviewPanel;
10
11pub mod DisposeWebviewPanel;
12
13pub mod OnDidReceiveMessage;
14
15pub mod OpenExternal;
16
17pub mod PostWebviewMessage;
18
19pub mod ReportProgress;
20
21pub mod SetStatusBarText;
22
23pub mod SetWebviewHtml;
24
25pub mod ShowErrorMessage;
26
27pub mod ShowInformationMessage;
28
29pub mod ShowInputBox;
30
31pub mod ShowProgress;
32
33pub mod ShowQuickPick;
34
35pub mod ShowTextDocument;
36
37pub mod ShowWarningMessage;