Files
xiaojianfeng c753c942da add createVirtualScreen, destroyVirtualScreen, setVirtualScreenSurface js interface
Signed-off-by: xiaojianfeng <xiaojianfeng3@huawei.com>
Change-Id: I6804ed004f038ece170bd7b4c795d72324871962
2022-05-23 15:01:31 +08:00

242 lines
6.1 KiB
TypeScript

/*
* Copyright (c) 2022 Huawei Device Co., Ltd.
* 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.
*/
import { AsyncCallback, Callback } from './basic';
/**
* interface of screen manager
* @syscap SystemCapability.WindowManager.WindowManager.Core
* @systemapi Hide this for inner system use.
* @since 9
*/
declare namespace screen {
/**
* get all screen
* @since 9
*/
function getAllScreens(callback: AsyncCallback<Array<Screen>>): void;
function getAllScreens(): Promise<Array<Screen>>;
/**
* Register the callback for screen changes.
* @param eventType: type of callback
* @since 9
*/
function on(eventType: 'connect' | 'disconnect' | 'change', callback: Callback<number>): void;
/**
* Unregister the callback for screen changes.
* @param eventType: type of callback
* @since 9
*/
function off(eventType: 'connect' | 'disconnect' | 'change', callback?: Callback<number>): void;
/**
* make screens as expand-screen
* @since 9
*/
function makeExpand(options:Array<ExpandOption>, callback: AsyncCallback<number>): void;
function makeExpand(options:Array<ExpandOption>): Promise<number>;
/**
* make screens as mirror-screen
* @since 9
*/
function makeMirror(mainScreen:number, mirrorScreen:Array<number>, callback: AsyncCallback<number>): void;
function makeMirror(mainScreen:number, mirrorScreen:Array<number>): Promise<number>;
/**
* Create virtual screen.
* @param option Indicates the option of the virtual screen.
* @since 9
*/
function createVirtualScreen(option:VirtualScreenOption, callback: AsyncCallback<Screen>): void;
function createVirtualScreen(option:VirtualScreenOption): Promise<Screen>;
/**
* Destroy virtual screen.
* @param screenId Indicates the screen id of the virtual screen.
* @since 9
*/
function destroyVirtualScreen(screenId:number, callback: AsyncCallback<void>): void;
function destroyVirtualScreen(screenId:number): Promise<void>;
/**
* Set surface for the virtual screen.
* @param screenId Indicates the screen id of the virtual screen.
* @param surfaceId Indicates the surface id.
* @since 9
*/
function setVirtualScreenSurface(screenId:number, surfaceId: string, callback: AsyncCallback<void>): void;
function setVirtualScreenSurface(screenId:number, surfaceId: string): Promise<void>;
/**
* the parameter of making expand screen
* @syscap SystemCapability.WindowManager.WindowManager.Core
* @since 9
*/
interface ExpandOption {
/**
* screen id
*/
screenId: number;
/**
* the start coordinate X of the screen origin
*/
startX: number;
/**
* the start coordinate Y of the screen origin
*/
startY: number;
}
/**
* The parameter for creating virtual screen.
* @syscap SystemCapability.WindowManager.WindowManager.Core
* @since 9
*/
interface VirtualScreenOption {
/**
* Indicates the name of the virtual screen.
*/
name: string
/**
* Indicates the width of the virtual screen.
*/
width: number
/**
* Indicates the height of the virtual screen.
*/
height: number
/**
* Indicates the density of the virtual screen.
*/
density: number
/**
* Indicates the surface id of the virtual screen.
*/
surfaceId: string
}
/**
* interface for screen
* @syscap SystemCapability.WindowManager.WindowManager.Core
* @since 9
*/
interface Screen {
/**
* screen id
*/
readonly id: number;
/**
* group id
*/
readonly parent: number;
/**
* mode supported by the screen
*/
readonly supportedModeInfo: Array<ScreenModeInfo>;
/**
* currently active mode
*/
readonly activeModeIndex: number;
/**
* orientation of the screen
*/
readonly orientation: Orientation;
/**
* set the orientation of the screen
* @since 9
*/
setOrientation(orientation: Orientation, callback: AsyncCallback<void>): void;
setOrientation(orientation: Orientation): Promise<void>;
/**
* active the mode
*/
setScreenActiveMode(modeIndex: number, callback: AsyncCallback<void>): void;
setScreenActiveMode(modeIndex: number): Promise<void>;
setDensityDpi(densityDpi: number, callback: AsyncCallback<void>): void;
setDensityDpi(densityDpi: number): Promise<void>;
}
/**
* interface for screen group
* @syscap SystemCapability.WindowManager.WindowManager.Core
* @since 9
*/
interface ScreenGroup {
/**
* get screen group id
*/
id: number;
combinationInfo: ExpandInfo | MirrorInfo;
}
interface ExpandInfo {
screenId: Array<number>;
startX: Array<number>;
startY: Array<number>;
}
interface MirrorInfo {
mainScreenId: number;
mirrorScreenId: Array<number>;
}
/**
* screen orientation
* @syscap SystemCapability.WindowManager.WindowManager.Core
* @since 9
*/
enum Orientation {
UNSPECIFIED = 0,
VERTICAL = 1,
HORIZONTAL = 2,
REVERSE_VERTICAL = 3,
REVERSE_HORIZONTAL = 4,
SENSOR = 5,
SENSOR_VERTICAL = 6,
SENSOR_HORIZONTAL = 7,
}
/**
* the infomation of the screen
* @syscap SystemCapability.WindowManager.WindowManager.Core
* @since 9
*/
interface ScreenModeInfo {
id: number;
width: number;
height: number;
refreshRate: number;
}
}
export default screen;