Go to file
pengxin 20fdc70be8 add function to rotate display direction by sensor
Signed-off-by: pengxin <pengxin33@huawei.com>
Change-Id: I2c7b95733a7bb2e52653065b9e12b4dc7b475277
2022-06-16 20:46:46 +08:00
AppDemo/window/immersive support API7 LoadContent 2022-04-13 09:39:47 +08:00
dm !992 wms dms增加权限控制接口 2022-06-15 01:59:39 +00:00
dmserver add function to rotate display direction by sensor 2022-06-16 20:46:46 +08:00
extension aafwk directory switching 2022-06-06 14:30:03 +08:00
figures 修改告警 2022-04-01 15:36:41 +08:00
interfaces add function to rotate display direction by sensor 2022-06-16 20:46:46 +08:00
resources add function to rotate display direction by sensor 2022-06-16 20:46:46 +08:00
sa_profile 修复资料问题 2022-03-26 12:17:00 +08:00
snapshot add screen recorder 2022-06-06 21:29:21 +08:00
utils !992 wms dms增加权限控制接口 2022-06-15 01:59:39 +00:00
wm !988 将remote animation 及startingwindow放入异步队列 2022-06-13 08:46:05 +00:00
wmserver !992 wms dms增加权限控制接口 2022-06-15 01:59:39 +00:00
wmtest/frameworks clear DM warning 2022-02-17 17:09:48 +08:00
bundle.json split window componentization 2022-06-02 16:18:36 +08:00
hisysevent.yaml Improve the wms event reporting function 2022-02-26 16:06:24 +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 update repositories involved 2022-06-14 11:33:29 +08:00
README.md update repositories involved 2022-06-14 11:33:29 +08:00
windowmanager_aafwk.gni aafwk directory switching 2022-06-06 14:30:03 +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/windowmanager/
├── 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