1 /* 2 * Copyright (C) 2022 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 package com.android.launcher3.tapl; 17 18 import androidx.test.uiautomator.UiObject2; 19 20 import java.util.regex.Pattern; 21 22 /** 23 * App icon specifically on the Taskbar. 24 */ 25 public final class TaskbarAppIcon extends AppIcon implements SplitscreenDragSource { 26 27 private static final Pattern LONG_CLICK_EVENT = Pattern.compile("onTaskbarItemLongClick"); 28 private static final Pattern RIGHT_CLICK_EVENT = Pattern.compile("onTaskbarItemRightClick"); 29 TaskbarAppIcon(LauncherInstrumentation launcher, UiObject2 icon)30 TaskbarAppIcon(LauncherInstrumentation launcher, UiObject2 icon) { 31 super(launcher, icon); 32 } 33 34 @Override getLongClickEvent()35 protected Pattern getLongClickEvent() { 36 return LONG_CLICK_EVENT; 37 } 38 getRightClickEvent()39 protected Pattern getRightClickEvent() { 40 return RIGHT_CLICK_EVENT; 41 } 42 43 @Override openDeepShortcutMenu()44 public TaskbarAppIconMenu openDeepShortcutMenu() { 45 return (TaskbarAppIconMenu) super.openDeepShortcutMenu(); 46 } 47 48 /** 49 * Right-clicks the icon to open its menu. 50 */ openDeepShortcutMenuWithRightClick()51 public TaskbarAppIconMenu openDeepShortcutMenuWithRightClick() { 52 try (LauncherInstrumentation.Closable e = mLauncher.addContextLayer( 53 "want to return the shortcut menu when icon is right-clicked.")) { 54 return createMenu(mLauncher.rightClickAndGet( 55 mObject, /* resName= */ "deep_shortcuts_container", getRightClickEvent())); 56 } 57 } 58 59 @Override createMenu(UiObject2 menu)60 protected TaskbarAppIconMenu createMenu(UiObject2 menu) { 61 return new TaskbarAppIconMenu(mLauncher, menu); 62 } 63 64 @Override getLaunchable()65 public Launchable getLaunchable() { 66 return this; 67 } 68 69 @Override launcherStopsAfterLaunch()70 protected boolean launcherStopsAfterLaunch() { 71 // false because if taskbar is showing then launcher is already stopped. 72 return false; 73 } 74 } 75