Go to file
openharmony_ci 0452b24213
!10221 窗口管理 编码规范问题整改
Merge pull request !10221 from LiangXinghui/local1
2024-10-26 11:56:52 +00:00
.gitee modify codeowners 2024-07-03 15:03:35 +08:00
AppDemo/window !7496 规范版权声明的格式 2024-07-18 03:45:36 +00:00
dm https://gitee.com/openharmony/window_window_manager/issues/IAZ0ZR 2024-10-26 09:52:30 +08:00
dm_lite Description: 精简日志打印 2024-10-17 20:17:51 +08:00
dmserver https://gitee.com/openharmony/window_window_manager/issues/IAZ0ZR 2024-10-26 09:52:30 +08:00
etc Differential configuration of sliding curve parameters 2024-10-10 15:30:31 +08:00
extension 头文件变量多次包含 2024-09-06 10:26:25 +08:00
figures modify Readme 2022-10-08 20:27:45 +08:00
interfaces !10013 增加根据窗口列表获取对应屏幕ID的InnerApi 2024-10-26 09:22:40 +00:00
previewer !10074 sync and 修复手势需求接口 2024-10-25 09:20:37 +00:00
resources 修改检视意见 2024-09-25 14:55:31 +08:00
sa_profile feature_fix 2024-08-23 10:24:34 +08:00
setresolution fix setresolution 2024-09-29 10:04:53 +08:00
snapshot 蓝区TDD失败处理 2024-09-04 11:30:45 +08:00
test !10156 Fix wms_window_animation_transition_test 2024-10-25 10:12:56 +00:00
utils 极致流畅问题修改 2024-10-26 17:45:58 +08:00
window_scene !10221 窗口管理 编码规范问题整改 2024-10-26 11:56:52 +00:00
wm 极致流畅问题修改 2024-10-26 17:45:58 +08:00
wmserver !10221 窗口管理 编码规范问题整改 2024-10-26 11:56:52 +00:00
bundle.json 移除对node的依赖 2024-10-15 09:08:28 +00: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 update README_zh.md. 2024-07-15 07:18:47 +00:00
README.md Change code path for windowmanager 2022-07-11 09:47:19 +08:00
scene_board_enable.gni feature_fix 2024-08-23 10:24:34 +08:00
windowmanager_aafwk.gni !7417 alter failed tdd 2024-07-18 04:00:08 +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