blob: 4cb8a3cdad4abb228ad116a9544722445b71b982 [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 {
Winson Chung1e8d71b2014-05-16 17:05:22 -070024 void showRecents(boolean triggeredFromAltTab, View statusBarView);
Winson Chungcdcd4872014-08-05 18:00:13 -070025 void hideRecents(boolean triggeredFromAltTab, boolean triggeredFromHomeKey);
John Spurlockd08de372013-06-24 13:06:08 -040026 void toggleRecents(Display display, int layoutDirection, View statusBarView);
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 Jaggi9ea2f7b2015-11-23 18:08:28 -080035 void dockTopTask(boolean draggingInRecents, Rect initialBounds);
Jorim Jaggidd98d412015-11-18 15:57:38 -080036
37 /**
38 * Called during a drag-from-navbar-in gesture.
39 *
40 * @param distanceFromTop the distance of the current drag in gesture from the top of the
41 * screen
42 */
43 void onDraggingInRecents(float distanceFromTop);
44
45 /**
46 * Called when the gesture to drag in recents ended.
47 *
48 * @param velocity the velocity of the finger when releasing it in pixels per second
49 */
50 void onDraggingInRecentsEnded(float velocity);
John Spurlockd08de372013-06-24 13:06:08 -040051}