Go to file
Fenger-hash ea52ab8c64 codecheck fix
Signed-off-by: Fenger-hash <duanruifeng@huawei.com>
2024-05-15 11:26:44 +08:00
AppDemo/window fix magic number 2024-04-20 19:09:21 +08:00
dm !6163 Fix Bug 2024-05-10 04:44:49 +00:00
dm_lite cfi 2024-05-08 15:23:09 +08:00
dmserver cfi 2024-05-08 15:23:09 +08:00
etc wms加入到开机event投票 2024-03-21 20:08:01 +08:00
extension !6163 Fix Bug 2024-05-10 04:44:49 +00:00
figures modify Readme 2022-10-08 20:27:45 +08:00
interfaces !6254 fix: fix log 2024-05-14 03:29:04 +00:00
previewer codecheck fix 2024-05-15 11:26:44 +08: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 fix warn 2024-01-16 12:32:03 +00:00
snapshot cfi 2024-05-08 15:23:09 +08:00
test !6213 新增window event fuzz test用例 2024-05-13 14:44:56 +00:00
utils codecheck fix 2024-05-15 11:26:44 +08:00
window_scene window manager refactoring 2024-05-14 16:48:29 +08:00
wm window manager refactoring 2024-05-14 16:48:29 +08:00
wmserver window manager refactoring 2024-05-14 16:48:29 +08:00
bundle.json add window ffi code 2024-05-11 19:59:46 +08:00
hisysevent.yaml DFX窗口打点逻辑 2024-04-18 09:32:07 +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