Go to file
zhangyao 32c79ae066 Description: DMS适配RS刷新率回调修改
IssueNo:https://gitee.com/openharmony/window_window_manager/issues/I99KAI
Feature or Bugfix: Feature
Binary Source:No
Signed-off-by: zhangyao <zhangyao114@huawei.com>
2024-03-28 08:13:31 +00:00
AppDemo/window fix warn. oat.xml filter 2024-03-11 09:03:01 +00:00
dm Description: DMS日志整改 2024-03-27 11:44:30 +08:00
dm_lite https://gitee.com/openharmony/window_window_manager/issues/I91CWB 2024-02-06 17:58:24 +08:00
dmserver !4943 解决多屏同显和多屏异显相关问题 2024-03-28 04:01:04 +00:00
etc wms加入到开机event投票 2024-03-21 20:08:01 +08:00
extension 解决IPC-Full稳定性接口调用阻塞的问题 2024-01-11 19:37:12 +08:00
figures modify Readme 2022-10-08 20:27:45 +08:00
interfaces Description: DMS适配RS刷新率回调修改 2024-03-28 08:13:31 +00:00
previewer Description: DMS适配RS刷新率回调修改 2024-03-28 08:13:31 +00:00
resources window config和dayu产品解耦,因BundleCheck遗留window_manager_dayu210_resource_config 2024-03-14 17:25:03 +08:00
sa_profile fix proxy 2023-11-28 14:03:14 +08:00
setresolution fix warn 2024-01-16 12:32:03 +00:00
snapshot Description:failed TDD correct 2024-02-04 15:12:32 +08:00
test !5326 增加uiextension的生命周期超时通路 2024-03-25 10:36:04 +00:00
utils !5378 画中画日志整改及冗余代码删除 2024-03-22 09:45:45 +00:00
window_scene Description: DMS适配RS刷新率回调修改 2024-03-28 08:13:31 +00:00
wm !5428 窗口日志降重 2024-03-28 03:21:16 +00:00
wmserver !4943 解决多屏同显和多屏异显相关问题 2024-03-28 04:01:04 +00:00
bundle.json Add_Embeddable_Window_Stage 2024-03-13 15:36:34 +08:00
hisysevent.yaml !3907 焦点切换打点事件新增bundleName信息 2023-10-26 11:22:13 +00:00
LICENSE add LICENSE and OAT.xml 2022-02-12 09:14:42 +08:00
OAT.xml fix warn. oat.xml filter 2024-03-11 09:03:01 +00:00
README_zh.md modify Readme 2022-10-08 20:27:45 +08:00
README.md Change code path for windowmanager 2022-07-11 09:47:19 +08:00
scene_board_enable.gni 增加dm_lite接口来适配cadaemon进程和useriam进程 2024-01-02 02:56:12 +00:00
windowmanager_aafwk.gni 增加dm_lite接口来适配cadaemon进程和useriam进程 2024-01-02 02:56:12 +00:00

Window Manager

Introduction

The Window Manager subsystem provides basic capabilities of window and display management. It is the basis for UI display. The following figure shows the architecture of the Window Manager subsystem.

Figure 1 Architecture of the Window Manager subsystem

WindowManager-subsystem-architecture

  • Window Manager Client

    Provides window object abstraction and window management interfaces, and connects to the ability and UI framework.

  • Display Manager Client

    Provides display information abstraction and display management interfaces.

  • Window Manager Server

    Provides capabilities such as window layout, Z-order control, window tree structure, window dragging, and window snapshot, and offers the window layout and focus window for multimodal input.

  • Display Manager Server

    Provides display information, screenshot, screen on/off, and brightness processing control, and processes the mapping between the display and screen.

Directory Structure

foundation/window/window_manager/
├── dm                      # Stores Display Manager Client implementation code
├── dmserver                # Stores Display Manager Server implementation code
├── interfaces              # Stores external APIs
│   ├── innerkits           # Stores native APIs
│   └── kits                # Stores JS APIs and native APIs
├── resources               # Stores resource files used by the framework
├── sa_profile              # Stores system service configuration files
├── snapshot                # Stores implementation code of the screenshot command line tool
├── utils                   # Stores tools
├── wm                      # Stores Window Manager Client implementation code
├── wmserver                # Stores Window Manager Server implementation code

Constraints

  • Programming language version
    • C++ 11 or later

Available APIs

Repositories Involved