Go to file
xiahaiqin eeb9edf9bf modify Readme
Signed-off-by: xiahaiqin <xiahaiqin1@huawei.com>
Change-Id: I72d2291f1846674d8bfa901c9238f6d8ad9386f1
2022-10-08 20:27:45 +08:00
AppDemo/window add 2022-10-04 17:58:15 +08:00
dm !1615 modify part name - window_window_manager 2022-09-29 13:31:29 +00:00
dmserver !1624 Warning整改 2022-09-29 06:38:45 +00:00
extension add nullptr check before marshalling 2022-09-29 11:17:30 +08:00
figures modify Readme 2022-10-08 20:27:45 +08:00
interfaces !1640 【ADD】添加系统子窗口创建判断 2022-10-08 05:05:39 +00:00
previewer 删除多余依赖 2022-10-08 12:31:31 +08:00
resources add window cutout from dms 2022-09-26 16:46:35 +08:00
sa_profile 修复资料问题 2022-03-26 12:17:00 +08:00
snapshot modify part name 2022-09-27 12:50:40 +08:00
test 添加判断限制系统窗口子窗口的创建 2022-10-08 10:09:18 +08:00
utils 删除多余依赖 2022-10-08 12:31:31 +08:00
wm !1644 add pravicy mode test 2022-10-08 11:20:55 +00:00
wmserver 删除多余依赖 2022-10-08 12:31:31 +08:00
bundle.json modify part name 2022-09-27 12:50:40 +08:00
hisysevent.yaml add performance sysevent 2022-08-02 17:16:18 +08:00
LICENSE add LICENSE and OAT.xml 2022-02-12 09:14:42 +08:00
OAT.xml 修复告警 2022-03-25 17:53:39 +08: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
windowmanager_aafwk.gni 修改组件名 2022-07-22 11:53:13 +08: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