Go to file
wangmiaoliang 3bfb836086 fix warn. oat.xml filter
Signed-off-by: wangmiaoliang <wangmiaoliang1@huawei.com>
Change-Id: I0d83014e19b157411482306f8979d0e50113a408
2024-03-11 09:03:01 +00:00
AppDemo/window fix warn. oat.xml filter 2024-03-11 09:03:01 +00:00
dm Description: Add null checking logic for the return value of new to DisplayManager: Impl:: UpdateDisplayInfoLocked. 2024-02-22 16:09:12 +08:00
dm_lite https://gitee.com/openharmony/window_window_manager/issues/I91CWB 2024-02-06 17:58:24 +08:00
dmserver !5149 新增TDD用例2.23 2024-02-26 03:36:04 +00:00
etc Add DAC access control for bootevent.wms.fullscreen.ready 2022-10-13 11:37:34 +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 修复windowtoken空指针问题 2024-03-04 16:17:27 +08:00
previewer fix supported device 2024-02-05 21:34:58 +08:00
resources 解决画中画模板双击放大控制层存在残留的问题 2024-01-08 19:05:24 +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 Description:window_manager rk3568 tdd case correct 2024-02-20 18:41:15 +08:00
utils fix setResolution bug 2024-02-28 15:56:56 +08:00
window_scene !5165 修复ui侧焦点回调多线程问题 2024-03-04 15:17:55 +00:00
wm revert code 2024-03-03 21:08:50 +08:00
wmserver !5152 wmserver_window_layout_policy_test TDD 失败异常修复 2024-02-29 08:26:20 +00:00
bundle.json Remove account dependency to solve keyboard popup problem after user switch 2024-01-25 15:22:09 +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