Go to file
张凯 2ecd5ea65a fix input method test
Signed-off-by: 张凯 <zhangkai324@huawei.com>
Change-Id: Id0201be0dc2516508c1366584dd59466b1b2a859
2024-08-07 07:52:09 +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 Merge branch 'master' of gitee.com:openharmony/window_window_manager into master 2024-07-25 06:33:34 +00:00
dm_lite Decription: 新增测试用例 2024-07-30 21:25:17 +08:00
dmserver !7762 新增display_manager_stub.cpp的测试用例 2024-07-30 14:47:54 +00:00
etc wms加入到开机event投票 2024-03-21 20:08:01 +08:00
extension !7828 WindowExtensionClientStubImpl构造函数使用const& 2024-08-03 07:17:22 +00:00
figures modify Readme 2022-10-08 20:27:45 +08:00
interfaces !7836 优化窗口沉浸式日志打印 2024-08-05 02:51:20 +00:00
previewer 新增窗口状态和获焦状态的查询接口实现 2024-07-30 16:54:36 +08:00
resources 修改检视意见 2024-06-18 20:28:26 +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 snapshot_display异常直接_exit(-1)退出 2024-07-12 14:56:43 +08:00
test fix input method test 2024-08-07 07:52:09 +00:00
utils !7807 提高DT覆盖率 2024-08-05 12:10:50 +00:00
window_scene !7855 修复告警 2024-08-05 12:32:32 +00:00
wm !7840 屏蔽window_extension_session_impl单独设置dpi的方法 2024-08-05 12:30:40 +00:00
wmserver OnRemoteRequest返回值魔鬼数字整改 2024-08-03 10:38:36 +08:00
bundle.json 三个部件依赖闭源转开源 2024-07-17 15:41: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 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 引入build/ohos.gni 2024-04-24 16:08:18 +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