Go to file
openharmony_ci 0983aea87a
!2401 窗口沉浸式模式改为组件自动避让实现回退
Merge pull request !2401 from ZhengJiangliang/temp_avoid
2023-03-23 15:42:05 +00:00
AppDemo/window IssueNo: #I5X5NZ 2022-11-01 16:07:25 +08:00
dm fix screenManagerAdapterFuzz crash 2023-03-03 14:59:43 +08:00
dmserver update logic for landscape startup 2023-03-23 15:16:50 +08:00
etc Add DAC access control for bootevent.wms.fullscreen.ready 2022-10-13 11:37:34 +08:00
extension fixed 2d2534e from https://gitee.com/zhangyafei-echo/window_window_manager/pulls/2282 2023-03-10 08:36:33 +00:00
figures modify Readme 2022-10-08 20:27:45 +08:00
interfaces fix memory leak issue 2023-03-18 14:03:02 +08:00
previewer !2369 废弃GetBundleNameForUid && 静态告警修复 2023-03-16 06:13:23 +00:00
resources Enable set window shadow radius from configuration 2023-03-22 12:17:52 +08:00
sa_profile 修复资料问题 2022-03-26 12:17:00 +08:00
snapshot 100 to 75 2023-01-16 14:07:00 +08:00
test !2401 窗口沉浸式模式改为组件自动避让实现回退 2023-03-23 15:42:05 +00:00
utils update logic for landscape startup 2023-03-23 15:16:50 +08:00
window_scene adapt surface node type 2023-03-16 20:43:38 +08:00
wm !2401 窗口沉浸式模式改为组件自动避让实现回退 2023-03-23 15:42:05 +00:00
wmserver !2401 窗口沉浸式模式改为组件自动避让实现回退 2023-03-23 15:42:05 +00:00
bundle.json add ut&st for session 2023-03-06 21:21:47 +08:00
hisysevent.yaml add report for window animation 2023-01-06 15:30:09 +08:00
LICENSE add LICENSE and OAT.xml 2022-02-12 09:14:42 +08:00
OAT.xml 修复告警 2022-03-25 17:53:39 +08: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
windowmanager_aafwk.gni !2324 增加会话管理框架接口定义 2023-02-28 09:39:31 +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