2022-10-11 08:34:13 +00:00
|
|
|
/*
|
2024-02-29 06:39:22 +00:00
|
|
|
* Copyright (c) 2022-2024 Huawei Device Co., Ltd.
|
2022-10-11 08:34:13 +00:00
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2023-12-11 09:08:03 +00:00
|
|
|
/**
|
|
|
|
* @file
|
2024-01-15 15:09:12 +00:00
|
|
|
* @kit IMEKit
|
2023-12-11 09:08:03 +00:00
|
|
|
*/
|
|
|
|
|
2023-04-04 02:17:06 +00:00
|
|
|
import { AsyncCallback } from './@ohos.base';
|
2024-02-29 06:39:22 +00:00
|
|
|
import Want from './@ohos.app.ability.Want';
|
2022-10-11 08:34:13 +00:00
|
|
|
import ExtensionContext from './application/ExtensionContext';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The extension context class of input method.
|
|
|
|
*
|
2023-03-21 02:40:46 +00:00
|
|
|
* @extends ExtensionContext
|
2022-10-11 08:34:13 +00:00
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
2023-02-10 09:27:45 +00:00
|
|
|
* @StageModelOnly
|
2023-03-21 02:40:46 +00:00
|
|
|
* @since 9
|
2022-10-11 08:34:13 +00:00
|
|
|
*/
|
|
|
|
export default class InputMethodExtensionContext extends ExtensionContext {
|
2023-03-21 02:40:46 +00:00
|
|
|
/**
|
|
|
|
* Destroy the input method extension.
|
|
|
|
*
|
|
|
|
* @param { AsyncCallback<void> } callback - the callback of destroy.
|
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
|
|
|
* @StageModelOnly
|
|
|
|
* @since 9
|
|
|
|
*/
|
|
|
|
destroy(callback: AsyncCallback<void>): void;
|
2022-10-11 08:34:13 +00:00
|
|
|
|
2023-03-21 02:40:46 +00:00
|
|
|
/**
|
|
|
|
* Destroy the input method extension.
|
|
|
|
*
|
|
|
|
* @returns { Promise<void> } the promise returned by the function.
|
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
|
|
|
* @StageModelOnly
|
|
|
|
* @since 9
|
|
|
|
*/
|
|
|
|
destroy(): Promise<void>;
|
2024-02-29 06:39:22 +00:00
|
|
|
|
|
|
|
/**
|
2024-03-06 09:14:30 +00:00
|
|
|
* Inputmethod extension uses this method to start a specific ability.
|
2024-02-29 06:39:22 +00:00
|
|
|
*
|
|
|
|
* @param { Want } want - Indicates the ability to start.
|
|
|
|
* @returns { Promise<void> } The promise returned by the function.
|
2024-04-12 03:10:35 +00:00
|
|
|
* @throws { BusinessError } 401 - parameter error. Possible causes:
|
|
|
|
* 1.Mandatory parameters are left unspecified; 2.Incorrect parameter types; 3.Parameter verification failed.
|
2024-03-06 09:14:30 +00:00
|
|
|
* @throws { BusinessError } 16000001 - The specified ability does not exist.
|
2024-04-28 11:27:29 +00:00
|
|
|
* @throws { BusinessError } 16000002 - Incorrect ability type.
|
2024-03-06 09:14:30 +00:00
|
|
|
* @throws { BusinessError } 16000004 - Can not start invisible component.
|
|
|
|
* @throws { BusinessError } 16000005 - The specified process does not have the permission.
|
|
|
|
* @throws { BusinessError } 16000006 - Cross-user operations are not allowed.
|
|
|
|
* @throws { BusinessError } 16000008 - The crowdtesting application expires.
|
|
|
|
* @throws { BusinessError } 16000009 - An ability cannot be started or stopped in Wukong mode.
|
2024-08-13 11:52:44 +00:00
|
|
|
* @throws { BusinessError } 16000010 - The call with the continuation and prepare continuation flag is forbidden.
|
2024-03-06 09:14:30 +00:00
|
|
|
* @throws { BusinessError } 16000011 - The context does not exist.
|
|
|
|
* @throws { BusinessError } 16000012 - The application is controlled.
|
|
|
|
* @throws { BusinessError } 16000013 - The application is controlled by EDM.
|
2024-04-28 11:27:29 +00:00
|
|
|
* @throws { BusinessError } 16000019 - Can not match any component.
|
2024-03-06 09:14:30 +00:00
|
|
|
* @throws { BusinessError } 16000050 - Internal error.
|
|
|
|
* @throws { BusinessError } 16000053 - The ability is not on the top of the UI.
|
|
|
|
* @throws { BusinessError } 16000055 - Installation-free timed out.
|
|
|
|
* @throws { BusinessError } 16000061 - Can not start component belongs to other bundle.
|
2024-05-27 11:30:30 +00:00
|
|
|
* @throws { BusinessError } 16000069 - The extension cannot start the third party application.
|
|
|
|
* @throws { BusinessError } 16000070 - The extension cannot start the service.
|
2024-03-06 09:14:30 +00:00
|
|
|
* @throws { BusinessError } 16200001 - The caller has been released.
|
2024-02-29 06:39:22 +00:00
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
2024-03-27 06:15:20 +00:00
|
|
|
* @StageModelOnly
|
2024-02-29 06:39:22 +00:00
|
|
|
* @since 12
|
|
|
|
*/
|
|
|
|
startAbility(want: Want): Promise<void>;
|
2023-03-21 02:40:46 +00:00
|
|
|
}
|