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;
8pub mod CreateWebviewPanel;
9pub mod DisposeWebviewPanel;
10pub mod OnDidReceiveMessage;
11pub mod OpenExternal;
12pub mod PostWebviewMessage;
13pub mod ReportProgress;
14pub mod SetStatusBarText;
15pub mod SetWebviewHtml;
16pub mod ShowErrorMessage;
17pub mod ShowInformationMessage;
18pub mod ShowInputBox;
19pub mod ShowProgress;
20pub mod ShowQuickPick;
21pub mod ShowTextDocument;
22pub mod ShowWarningMessage;