Go to file
openharmony_ci 94213a6676
!6948 增加screensessionmanagerclientstub的fuzz用例
Merge pull request !6948 from 张有康/master
2024-06-17 12:58:58 +00:00
.gitee !5817 add commit message 2024-06-05 11:00:45 +00:00
AppDemo/window add fix_warning 2024-05-28 19:55:15 +08:00
dm !6909 增加部分维测 2024-06-14 10:38:13 +00:00
dm_lite cfi 2024-05-08 15:23:09 +08:00
dmserver !6911 修改screen.isScreenRotationLocked接口查询锁定开关状态不对 2024-06-14 06:26:51 +00:00
etc wms加入到开机event投票 2024-03-21 20:08:01 +08:00
extension Merge remote-tracking branch 'ohos/master' into m 2024-06-06 12:29:29 +08:00
figures modify Readme 2022-10-08 20:27:45 +08:00
interfaces !6918 窗口灰阶接口性能优化 2024-06-14 06:30:20 +00:00
previewer !6863 窗口恢复接口增加权限校验 2024-06-12 09:57:59 +00:00
resources 画中画Restore流程更新 2024-05-30 09:21:31 +08:00
sa_profile fix proxy 2023-11-28 14:03:14 +08:00
setresolution CleanCode告警处理 2024-05-30 17:22:48 +08:00
snapshot 提高RGBA8888ToRGB88801和RGB565ToRGB888分支覆盖率 2024-06-17 16:08:15 +08:00
test !6948 增加screensessionmanagerclientstub的fuzz用例 2024-06-17 12:58:58 +00:00
utils !6947 删除冗余代码 2024-06-17 06:10:07 +00:00
window_scene !6957 特殊窗口安全专项-取消输入法权限校验 2024-06-17 12:38:55 +00:00
wm !6944 拦截创建的窗口类型返回1300004错误码,非SCB支持的类型返回801错误码 2024-06-16 10:31:57 +00:00
wmserver 增加判空,修改打印日志 2024-06-17 10:42:23 +08:00
bundle.json Updating drag drawing for rotate 2024-06-01 15:56:01 +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 add tdd root_scene_test 2024-06-05 16:15:44 +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