blob: e3bc2a760b5fad3b01367a6f30e2ba035577142a [file] [log] [blame]
Winsone693aaf2016-03-01 12:05:59 -08001/*
2 * Copyright (C) 2016 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
17package com.android.systemui.recents.events.activity;
18
19import com.android.systemui.recents.events.EventBus;
20
21/**
22 * This is sent when the Recents activity configuration has changed.
23 */
24public class ConfigurationChangedEvent extends EventBus.AnimatedEvent {
Winson619e40c2016-03-25 16:12:35 -070025
26 public final boolean fromMultiWindow;
Winson44849b82016-03-29 10:45:45 -070027 public final boolean fromOrientationChange;
Winson500ba752016-03-30 11:59:22 -070028 public final boolean hasStackTasks;
Winson619e40c2016-03-25 16:12:35 -070029
Winson500ba752016-03-30 11:59:22 -070030 public ConfigurationChangedEvent(boolean fromMultiWindow, boolean fromOrientationChange,
31 boolean hasStackTasks) {
Winson619e40c2016-03-25 16:12:35 -070032 this.fromMultiWindow = fromMultiWindow;
Winson44849b82016-03-29 10:45:45 -070033 this.fromOrientationChange = fromOrientationChange;
Winson500ba752016-03-30 11:59:22 -070034 this.hasStackTasks = hasStackTasks;
Winson619e40c2016-03-25 16:12:35 -070035 }
Winsone693aaf2016-03-01 12:05:59 -080036}