Skip to main content

Mountain/RPC/CocoonService/
Window.rs

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