blob: 94b2fdbf5ff828c33a0135d1444be3fbbf52e5c7 [file] [log] [blame]
John Spurlockd08de372013-06-24 13:06:08 -04001/*
2 * Copyright (C) 2013 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;
18
Jorim Jaggi9ea2f7b2015-11-23 18:08:28 -080019import android.graphics.Rect;
John Spurlockd08de372013-06-24 13:06:08 -040020import android.view.Display;
21import android.view.View;
22
23public interface RecentsComponent {
Jorim Jaggidb21bbd2016-04-18 15:32:07 -070024 void showRecents(boolean triggeredFromAltTab, boolean fromHome);
Winson Chungcdcd4872014-08-05 18:00:13 -070025 void hideRecents(boolean triggeredFromAltTab, boolean triggeredFromHomeKey);
Jorim Jaggidb21bbd2016-04-18 15:32:07 -070026 void toggleRecents(Display display);
Winson Chung1e8d71b2014-05-16 17:05:22 -070027 void preloadRecents();
28 void cancelPreloadingRecents();
Winson Chungb1f74992014-08-08 12:53:09 -070029 void showNextAffiliatedTask();
30 void showPrevAffiliatedTask();
Jorim Jaggi75b25972015-10-21 14:51:10 +020031
32 /**
33 * Docks the top-most task and opens recents.
34 */
Jorim Jaggi29379ec2016-04-11 23:43:42 -070035 boolean dockTopTask(int dragMode, int stackCreateMode, Rect initialBounds,
36 int metricsDockAction);
Jorim Jaggidd98d412015-11-18 15:57:38 -080037
38 /**
39 * Called during a drag-from-navbar-in gesture.
40 *
41 * @param distanceFromTop the distance of the current drag in gesture from the top of the
42 * screen
43 */
44 void onDraggingInRecents(float distanceFromTop);
45
46 /**
47 * Called when the gesture to drag in recents ended.
48 *
49 * @param velocity the velocity of the finger when releasing it in pixels per second
50 */
51 void onDraggingInRecentsEnded(float velocity);
John Spurlockd08de372013-06-24 13:06:08 -040052}