xiaojianfeng 7b5d7e1d9e add desktop and keyguard orientaion
Signed-off-by: xiaojianfeng <xiaojianfeng3@huawei.com>
Change-Id: I18317cfc343ad5e29dab60746ba9cf103946c338
2022-07-21 12:00:52 +08:00
2022-06-16 19:36:58 +08:00
2022-07-16 21:07:53 +08:00
2022-07-16 21:07:53 +08:00
2022-04-01 15:36:41 +08:00
2022-07-20 01:45:34 +00:00
2022-03-26 12:17:00 +08:00
2022-07-16 21:07:53 +08:00
2022-07-21 12:00:52 +08:00
2022-07-20 10:53:00 +08:00
2022-02-17 17:09:48 +08:00
2022-06-22 12:25:18 +08:00
2022-02-12 09:14:42 +08:00
2022-03-25 17:53:39 +08:00
2022-07-11 09:47:19 +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

S
Description
Window Manager | 窗口管理框架
Readme 12 MiB
Languages
C++ 99.3%
C 0.3%
JavaScript 0.2%
TypeScript 0.2%