• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1/*
2 * Copyright (c) 2022-2023 Huawei Device Co., Ltd.
3 * Licensed under the Apache License, Version 2.0 (the "License"),
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at
6 *
7 *     http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
15
16/**
17 * @file
18 * @kit ArkUI
19 */
20
21import rpc from './@ohos.rpc';
22import _WindowExtensionContext from './application/WindowExtensionContext';
23import Want from './@ohos.app.ability.Want';
24import window from './@ohos.window';
25
26/**
27 * class of window extension ability.
28 *
29 * @syscap SystemCapability.WindowManager.WindowManager.Core
30 * @systemapi hide for inner use.
31 * @StageModelOnly
32 * @since 9
33 */
34export default class WindowExtensionAbility {
35  /**
36   * Indicates window extension ability context.
37   *
38   * @syscap SystemCapability.WindowManager.WindowManager.Core
39   * @systemapi hide for inner use.
40   * @StageModelOnly
41   * @since 9
42   */
43  context: WindowExtensionContext;
44
45  /**
46   * Called back when a window extension is first connected to an ability.
47   *
48   * @param { Want } want Indicates connection information about the Window ability.
49   * @syscap SystemCapability.WindowManager.WindowManager.Core
50   * @systemapi hide for inner use.
51   * @StageModelOnly
52   * @since 9
53   */
54  onConnect(want: Want): void;
55
56  /**
57   * Called back when all abilities connected to a window extension are disconnected.
58   *
59   * @param { Want } want Indicates disconnection information about the window extension.
60   * @syscap SystemCapability.WindowManager.WindowManager.Core
61   * @systemapi hide for inner use.
62   * @StageModelOnly
63   * @since 9
64   */
65  onDisconnect(want: Want): void;
66
67  /**
68   * Called back when window is created.
69   *
70   * @param { window.Window } window Current Window instance.
71   * @syscap SystemCapability.WindowManager.WindowManager.Core
72   * @systemapi hide for inner use.
73   * @StageModelOnly
74   * @since 9
75   */
76  onWindowReady(window: window.Window): void;
77}
78
79/**
80 * The context of window extension. It allows access to
81 * windowExtension-specific resources.
82 *
83 * @syscap SystemCapability.WindowManager.WindowManager.Core
84 * @systemapi
85 * @stagemodelonly
86 * @since 9
87 */
88export type WindowExtensionContext = _WindowExtensionContext;
89