Theia API Documentation v1.65.0
    Preparing search index...

    Service for opening new secondary windows to contain widgets extracted from the application shell.

    The functionality provided by this service and its implementation is still under development. Use with caution.

    interface SecondaryWindowService {
        beforeWidgetRestore: Event<[Widget, Window]>;
        onWindowClosed: Event<Window>;
        onWindowOpened: Event<Window>;
        createSecondaryWindow(
            widget: ExtractableWidget,
            shell: ApplicationShell,
        ): undefined | Window | SecondaryWindow;
        focus(win: Window): void;
        getWindows(): Window[];
    }

    Implemented by

    Index

    Properties

    beforeWidgetRestore: Event<[Widget, Window]>
    onWindowClosed: Event<Window>
    onWindowOpened: Event<Window>

    Methods