Go to file
chenxingyu (V) 0488b39da5 告警清理,使用 namespace 封装函数和变量
Signed-off-by: chenxingyu (V) <c60039285@china.huawei.com>
2024-05-27 20:20:02 +08:00
.gitee add code owners 2024-05-18 15:33:12 +08:00
AppDemo/window fix magic number 2024-04-20 19:09:21 +08:00
dm 新增接口日志 2024-05-22 11:28:38 +08:00
dm_lite cfi 2024-05-08 15:23:09 +08:00
dmserver Description: 增加AbstractScreenController维测 2024-05-25 17:15:48 +08:00
etc wms加入到开机event投票 2024-03-21 20:08:01 +08:00
extension 添加startOptions so 2024-05-16 19:07:33 +08:00
figures modify Readme 2022-10-08 20:27:45 +08:00
interfaces !6547 修复ffi函数回调注册死锁问题 2024-05-27 03:19:35 +00:00
previewer update previewer/src/window_impl.cpp. 2024-05-25 05:38:20 +00:00
resources 去除import非build模块 2024-04-24 21:05:19 +08:00
sa_profile fix proxy 2023-11-28 14:03:14 +08:00
setresolution snapshot_display二进制文件进行developer代码隔离,setresolution_screen二进制文件进行debug代码隔离 2024-05-20 14:46:19 +08:00
snapshot 告警清理,使用 namespace 封装函数和变量 2024-05-27 20:20:02 +08:00
test !6465 JsWindowUtils超大函数重构 2024-05-25 14:11:50 +00:00
utils 增强dump维测信息 2024-05-26 16:39:15 +08:00
window_scene !6481 分屏/多窗场景识别告警清理 2024-05-27 04:40:57 +00:00
wm !6500 窗口事件分发TDD InputTransferstation 2024-05-27 03:36:51 +00:00
wmserver Modified format and name problem 2024-05-25 20:56:23 +08:00
bundle.json fix: add public include 2024-05-16 21:45:09 +08:00
hisysevent.yaml Decription: 增加屏幕旋转DFX打点 2024-05-25 18:51:14 +08: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 引入build/ohos.gni 2024-04-24 16:08:18 +08: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