blob: 0362ab176666b96dbc43fc8705974ec8e5e6b621 [file] [log] [blame]
Steven Timotiusaf03df62017-07-18 16:56:43 -07001/*
2 * Copyright (C) 2017 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Yi Jinc7f93072017-09-29 15:29:38 -070017syntax = "proto2";
Steven Timotiusaf03df62017-07-18 16:56:43 -070018
Vishnu Nair1d0fa072018-01-04 07:53:00 -080019import "frameworks/base/core/proto/android/graphics/pixelformat.proto";
20import "frameworks/base/core/proto/android/view/display.proto";
Yi Jin0d7bc2d12018-01-23 17:35:19 -080021import "frameworks/base/libs/incident/proto/android/privacy.proto";
Vishnu Nair1d0fa072018-01-04 07:53:00 -080022
23package android.view;
Steven Timotiusaf03df62017-07-18 16:56:43 -070024option java_multiple_files = true;
25
26/* represents WindowManager.LayoutParams */
27message WindowLayoutParamsProto {
Yi Jin0d7bc2d12018-01-23 17:35:19 -080028 option (.android.msg_privacy).dest = DEST_AUTOMATIC;
29
Yi Jinc7f93072017-09-29 15:29:38 -070030 optional int32 type = 1;
Vishnu Nair1d0fa072018-01-04 07:53:00 -080031 optional int32 x = 2;
32 optional int32 y = 3;
33 optional int32 width = 4;
34 optional int32 height = 5;
35 optional float horizontal_margin = 6;
36 optional float vertical_margin = 7;
37 optional int32 gravity = 8;
38 optional int32 soft_input_mode = 9;
39 optional .android.graphics.PixelFormatProto.Format format = 10;
40 optional int32 window_animations = 11;
41 optional float alpha = 12;
42 optional float screen_brightness = 13;
43 optional float button_brightness = 14;
44 enum RotationAnimation {
45 ROTATION_ANIMATION_UNSPECIFIED = -1;
46 ROTATION_ANIMATION_CROSSFADE = 1;
47 ROTATION_ANIMATION_JUMPCUT = 2;
48 ROTATION_ANIMATION_SEAMLESS = 3;
49 }
50 optional RotationAnimation rotation_animation = 15;
51 optional float preferred_refresh_rate = 16;
52 optional int32 preferred_display_mode_id = 17;
53 optional bool has_system_ui_listeners = 18;
54 optional uint32 input_feature_flags = 19;
55 optional int64 user_activity_timeout = 20;
56 enum NeedsMenuState {
57 NEEDS_MENU_UNSET = 0;
58 NEEDS_MENU_SET_TRUE = 1;
59 NEEDS_MENU_SET_FALSE = 2;
60 }
61 optional NeedsMenuState needs_menu_key = 22;
62 optional .android.view.DisplayProto.ColorMode color_mode = 23;
63 optional uint32 flags = 24;
Vishnu Nair1d0fa072018-01-04 07:53:00 -080064 optional uint32 private_flags = 26;
65 optional uint32 system_ui_visibility_flags = 27;
66 optional uint32 subtree_system_ui_visibility_flags = 28;
Steven Timotiusaf03df62017-07-18 16:56:43 -070067}