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