Go to file
openharmony_ci b7ce19cddd
!10712 修复窗口可绘制状态最后一次不通知
Merge pull request !10712 from ZihaoWU/wzh1111HAP
2024-11-14 15:38:20 +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 消减重复日志打印 2024-11-12 20:45:15 +08:00
dm_lite Description: 新增接口供avsession 2024-11-07 14:17:41 +08:00
dmserver !10541 fix: SetScreenBrightness补充权限 2024-11-11 04:34:44 +00:00
etc Differential configuration of sliding curve parameters 2024-10-10 15:30:31 +08:00
extension js_window_extension内存泄漏修复 2024-11-07 22:02:39 +08:00
figures modify Readme 2022-10-08 20:27:45 +08:00
interfaces !10712 修复窗口可绘制状态最后一次不通知 2024-11-14 15:38:20 +00:00
previewer 修复应用子窗创建且被拖拽时出现的异常 resize 问题 2024-11-13 21:02:12 +08:00
resources 修复画中画与之布局内存泄露问题 2024-11-11 20:59:56 +08:00
sa_profile feature_fix 2024-08-23 10:24:34 +08:00
setresolution 部件依赖 2024-10-29 21:18:58 +08:00
snapshot https://gitee.com/openharmony/window_window_manager/issues/IAZZHG 2024-10-27 20:26:44 +08:00
test !10718 【tdd】【window_layout_integration_test】 添加layout相关测试用例 2024-11-12 03:09:53 +00:00
utils Description:新增记录截屏应用功能 2024-11-14 10:37:43 +08:00
window_scene !10712 修复窗口可绘制状态最后一次不通知 2024-11-14 15:38:20 +00:00
wm !10712 修复窗口可绘制状态最后一次不通知 2024-11-14 15:38:20 +00:00
wmserver change1 2024-11-13 17:32:15 +08:00
bundle.json bundle.json 删除 motion 依赖 2024-11-08 14:29:24 +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 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